Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

IPostBuildCleanup.cs 515B

123456789101112131415
  1. using System;
  2. namespace UnityEngine.TestTools
  3. {
  4. /// <summary>
  5. /// Implement this interface if you want to define a set of actions to execute as a post-build step. Cleanup runs right away for a standalone test run, but only after all the tests run within the Editor.
  6. /// </summary>
  7. public interface IPostBuildCleanup
  8. {
  9. /// <summary>
  10. /// Implement this method to specify actions that should run as a post-build cleanup step.
  11. /// </summary>
  12. void Cleanup();
  13. }
  14. }