No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IPostBuildCleanup.cs 500B

12345678910111213
  1. namespace UnityEngine.TestTools
  2. {
  3. /// <summary>
  4. /// 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.
  5. /// </summary>
  6. public interface IPostBuildCleanup
  7. {
  8. /// <summary>
  9. /// Implement this method to specify actions that should run as a post-build cleanup step.
  10. /// </summary>
  11. void Cleanup();
  12. }
  13. }