Files
WoofWare.DotnetRuntimeLocator/WoofWare.DotnetRuntimeLocator/Boilerplate.cs
2024-06-07 19:16:46 +01:00

29 lines
548 B
C#

namespace System.Runtime.CompilerServices
{
internal class RequiredMemberAttribute : Attribute
{
}
internal class CompilerFeatureRequiredAttribute : Attribute
{
public CompilerFeatureRequiredAttribute(string name)
{
}
}
}
namespace System.Diagnostics.CodeAnalysis
{
[AttributeUsage(AttributeTargets.Constructor)]
internal sealed class SetsRequiredMembersAttribute : Attribute
{
}
}
namespace System.Runtime.CompilerServices
{
internal static class IsExternalInit
{
}
}