aspnetcore/src/Microsoft.AspNet.Hosting/AssemblyNeutralAttribute.cs

11 lines
233 B
C#

using System;
namespace Microsoft.Net.Runtime
{
[AssemblyNeutral]
[AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = true)]
public sealed class AssemblyNeutralAttribute : Attribute
{
}
}