10 lines
303 B
C#
10 lines
303 B
C#
|
using UnityEngine.TestTools;
|
||
|
|
||
|
namespace UnityEditor.TestTools.TestRunner
|
||
|
{
|
||
|
internal class PostbuildCleanupAttributeFinder : AttributeFinderBase<IPostBuildCleanup, PostBuildCleanupAttribute>
|
||
|
{
|
||
|
public PostbuildCleanupAttributeFinder() : base(attribute => attribute.TargetClass) {}
|
||
|
}
|
||
|
}
|