stitchaton/vendor/NetVips/ModuleInitializerAttribute.cs

11 lines
No EOL
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