Chasm.Compatibility.Attributes 2.1.2

dotnet add package Chasm.Compatibility.Attributes --version 2.1.2                
NuGet\Install-Package Chasm.Compatibility.Attributes -Version 2.1.2                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Chasm.Compatibility.Attributes" Version="2.1.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Chasm.Compatibility.Attributes --version 2.1.2                
#r "nuget: Chasm.Compatibility.Attributes, 2.1.2"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Chasm.Compatibility.Attributes as a Cake Addin
#addin nuget:?package=Chasm.Compatibility.Attributes&version=2.1.2

// Install Chasm.Compatibility.Attributes as a Cake Tool
#tool nuget:?package=Chasm.Compatibility.Attributes&version=2.1.2                

Chasm.Compatibility.Attributes

Latest NuGet version MIT License

Compiler-interpreted attributes

These attributes are interpreted by the compiler, and are generally not used directly in the compiled assembly.

  • [In] (Core 1.0+ / Standard 1.1+ / Framework 1.1+) - ref readonly method return type;
  • [CallerFilePath] (Core 1.0+ / Standard 1.0+ / Framework 4.5+);
  • [CallerLineNumber] (Core 1.0+ / Standard 1.0+ / Framework 4.5+);
  • [CallerMemberName] (Core 1.0+ / Standard 1.0+ / Framework 4.5+);
  • [AsyncMethodBuilder] (Core 1.1+ / Standard 2.0+);
  • [CallerArgumentExpression] (Core 3.0+);
  • [ModuleInitializer] (.NET 5+) - module initializers are a CLI spec feature and work on older targets as well;
  • [SkipLocalsInit] (.NET 5+) - simply removes the .locals init flag from metadata;
  • IsExternalInit metadata class (.NET 5+) - used for { init; } properties and record types;
  • [InterpolatedStringHandler] (.NET 6+) - allows using your own string interpolation handlers;
  • [InterpolatedStringHandlerArgument] (.NET 6+);
  • [CompilerFeatureRequired] (.NET 7+) - allows declaring required members and ref struct types;
  • [RequiredMember] (.NET 7+) - allows declaring required members;
  • [RequiresLocation] (.NET 8+) - ref readonly parameters in function pointers;
  • [CollectionBuilder] (.NET 8+) - used for creating custom collections from spans.

Nullable analysis attributes

Attributes to assist with C# 8.0's #nullable context and nullable reference type analysis.

  • [AllowNull] (Core 3.0+ / Standard 2.1+);
  • [DisallowNull];
  • [DoesNotReturn];
  • [DoesNotReturnIf];
  • [MaybeNull];
  • [MaybeNullWhen];
  • [NotNull];
  • [NotNullIfNotNull];
  • [NotNullWhen];
  • [MemberNotNull] (.NET 5+);
  • [MemberNotNullWhen] (.NET 5+).

Code analysis attributes

Attributes for code analyzers, IDE suggestions, syntax highlighting, and other tools.

  • [ExcludeFromCodeCoverage] (Core 2.0+ / Standard 2.0+ / Framework 4.0+);
  • [UnconditionalSuppressMessage] (.NET 5+);
  • [RequiresPreviewFeatures] (.NET 6+);
  • [StringSyntax] (.NET 7+);
  • [ConstantExpected] (.NET 7+);
  • [SetsRequiredMembers] (.NET 7+);
  • [UnscopedRef] (.NET 7+);
  • [Experimental] (.NET 8+).

Note: ExcludeFromCodeCoverageAttribute.Justification property is not shimmed, since it was added only in .NET 5.

Attributes used at runtime

  • [StackTraceHidden] (.NET 6+) - omits the method/type from StackTrace.ToString().

To-do List

Future .NET versions:

  • [FeatureGuard] (.NET 9+);
  • [FeatureSwitchDefinition] (.NET 9+);
  • [OverloadResolutionPriority] (.NET 9+);
  • [ParamCollection] (.NET 9+);

I'm not sure how the attributes below work, so I'll put it off for now:

  • [DisableRuntimeMarshalling];
  • [SuppressGCTransition];
  • [UnmanagedCallersOnly];
  • [UnsafeAccessor];
  • [InlineArray];
  • [DynamicallyAccessedMembers];
  • enum DynamicallyAccessedMemberTypes;
  • [DynamicDependency];
  • [RequiresAssemblyFiles];
  • [RequiresDynamicCode];
  • [RequiresUnreferencedCode];

Not needed

The following attributes are not provided by this package:

  • Attributes for C++ and Visual Basic compilers;
  • [RefSafetyRules] - generated automatically;
  • [ScopedRef] - generated automatically, for scoped ref parameters;
  • [NullableContext] - generated automatically, on types and methods in #nullable context;
  • [Nullable] - generated automatically, on types, members and parameters in #nullable context;
  • [TupleElementNames] - provided in the ValueTuple package;
  • [EnumeratorCancellation] - that would require adding TaskAsyncEnumerableExtensions as well;

Can't be added

  • [PreserveBaseOverrides] - requires runtime support of covariant return types;
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp1.0 is compatible.  netcoreapp1.1 is compatible.  netcoreapp2.0 is compatible.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 is compatible.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.0 is compatible.  netstandard1.1 is compatible.  netstandard1.2 was computed.  netstandard1.3 was computed.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net35 is compatible.  net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wp8 was computed.  wp81 was computed.  wpa81 was computed. 
Windows Store netcore was computed.  netcore45 was computed.  netcore451 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 1.0

  • .NETCoreApp 1.1

  • .NETCoreApp 2.0

    • No dependencies.
  • .NETCoreApp 3.0

    • No dependencies.
  • .NETFramework 3.5

    • No dependencies.
  • .NETFramework 4.0

    • No dependencies.
  • .NETFramework 4.5

    • No dependencies.
  • .NETStandard 1.0

  • .NETStandard 1.1

  • .NETStandard 2.0

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.
  • net5.0

    • No dependencies.
  • net6.0

    • No dependencies.
  • net7.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Chasm.Compatibility.Attributes:

Package Downloads
Chasm.Compatibility

Provides a bunch of compatibility stuff, polyfills and shims.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.2 264 7/30/2024
2.1.1 146 7/27/2024
2.1.0 102 7/27/2024
2.0.0 97 7/26/2024