mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
21 lines
632 B
C#
21 lines
632 B
C#
// ReSharper disable once CheckNamespace
|
|
namespace System.Runtime.CompilerServices {
|
|
|
|
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
|
|
internal sealed class IgnoresAccessChecksToAttribute : Attribute {
|
|
|
|
// ReSharper disable once InconsistentNaming
|
|
private readonly string assemblyName;
|
|
|
|
// ReSharper disable once ConvertToAutoProperty
|
|
// ReSharper disable once UnusedMember.Global
|
|
public string AssemblyName
|
|
=> assemblyName;
|
|
|
|
public IgnoresAccessChecksToAttribute(string assemblyName)
|
|
=> this.assemblyName = assemblyName;
|
|
|
|
}
|
|
|
|
}
|