stitchaton/vendor/NetVips/ModuleInitializerAttribute.cs

11 lines
297 B
C#
Raw Permalink Normal View History

2025-07-31 00:17:59 +07:00
// 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