StellarXipher/Library/PackageCache/com.unity.test-framework@0a21eb82d95c/UnityEditor.TestRunner/TestLaunchers/Helpers/PostbuildCleanupAttributeFinder.cs
2025-02-06 16:45:46 -05:00

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) {}
}
}