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 420B

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