11 lines
297 B
C#
11 lines
297 B
C#
|
|
// This file enables ModuleInitializer, a C# 9 feature to work with .NET Framework.
|
||
|
|
|
||
|
|
#if NETFRAMEWORK
|
||
|
|
namespace System.Runtime.CompilerServices;
|
||
|
|
|
||
|
|
/// <inheritdoc />
|
||
|
|
[AttributeUsage(AttributeTargets.Method, Inherited = false)]
|
||
|
|
internal sealed class ModuleInitializerAttribute : Attribute
|
||
|
|
{
|
||
|
|
}
|
||
|
|
#endif
|