pixelgon/Library/PackageCache/com.unity.test-framework@1.1.3/UnityEngine.TestRunner/Utils/PostBuildCleanupAttribute.cs
2020-06-05 11:54:36 -07:00

20 lines
588 B
C#

using System;
namespace UnityEngine.TestTools
{
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method)]
public class PostBuildCleanupAttribute : Attribute
{
public PostBuildCleanupAttribute(Type targetClass)
{
TargetClass = targetClass;
}
public PostBuildCleanupAttribute(string targetClassName)
{
TargetClass = AttributeHelper.GetTargetClassFromName(targetClassName, typeof(IPostBuildCleanup));
}
internal Type TargetClass { get; private set; }
}
}