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.

PostbuildCleanupTask.cs 520B

1234567891011121314151617181920
  1. using System;
  2. using NUnit.Framework.Interfaces;
  3. using UnityEngine;
  4. using UnityEngine.TestTools;
  5. namespace UnityEditor.TestTools.TestRunner.TestRun.Tasks
  6. {
  7. internal class PostbuildCleanupTask : BuildActionTaskBase<IPostBuildCleanup>
  8. {
  9. public PostbuildCleanupTask() : base(new PostbuildCleanupAttributeFinder())
  10. {
  11. RunOnError = ErrorRunMode.RunAlways;
  12. }
  13. protected override void Action(IPostBuildCleanup target)
  14. {
  15. target.Cleanup();
  16. }
  17. }
  18. }