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.

PrebuildSetupTask.cs 479B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections;
  3. using NUnit.Framework.Interfaces;
  4. using UnityEngine;
  5. using UnityEngine.TestTools;
  6. namespace UnityEditor.TestTools.TestRunner.TestRun.Tasks
  7. {
  8. internal class PrebuildSetupTask : BuildActionTaskBase<IPrebuildSetup>
  9. {
  10. public PrebuildSetupTask() : base(new PrebuildSetupAttributeFinder())
  11. {
  12. }
  13. protected override void Action(IPrebuildSetup target)
  14. {
  15. target.Setup();
  16. }
  17. }
  18. }