Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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