説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

PrebuildSetupAttributeFinder.cs 305B

12345678910
  1. using System;
  2. using UnityEngine.TestTools;
  3. namespace UnityEditor.TestTools.TestRunner
  4. {
  5. internal class PrebuildSetupAttributeFinder : AttributeFinderBase<IPrebuildSetup, PrebuildSetupAttribute>
  6. {
  7. public PrebuildSetupAttributeFinder() : base(attribute => attribute.TargetClass) {}
  8. }
  9. }