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 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. }