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