Qowaiv.Diagnostics.Contracts
1.0.0
See the version list below for details.
dotnet add package Qowaiv.Diagnostics.Contracts --version 1.0.0
NuGet\Install-Package Qowaiv.Diagnostics.Contracts -Version 1.0.0
<PackageReference Include="Qowaiv.Diagnostics.Contracts" Version="1.0.0" />
paket add Qowaiv.Diagnostics.Contracts --version 1.0.0
#r "nuget: Qowaiv.Diagnostics.Contracts, 1.0.0"
// Install Qowaiv.Diagnostics.Contracts as a Cake Addin #addin nuget:?package=Qowaiv.Diagnostics.Contracts&version=1.0.0 // Install Qowaiv.Diagnostics.Contracts as a Cake Tool #tool nuget:?package=Qowaiv.Diagnostics.Contracts&version=1.0.0
Qowaiv Diagnostics Contracts
This packages contains attributes to define (expected) behavior on code.
Most likely, you only need this dependency compile time. In that case you should add the dependency as follows:
<ItemGroup>
<PackageReference
Include="Qowaiv.Diagnostics.Contracts"
Version="*"
PrivateAssets=""all"
IncludeAssets="compile" />
<ItemGroup>
To embed the result of these decorations in the compiled assembly, the DEFINE
constant CONTRACTS_FULL
has to be set.
<PropertyGroup>
<DefineConstants>CONTRACTS_FULL</DefineConstants>
</PropertyGroup>
If you only use these decorations to enable static code analysis, this constant is not needed.
Impure attribute
Opposed to the [Pure]
attribute, the [Impure]
attribute indicates that a
method has side effects. This attribute can help working with static code
analyzer rule: QW0003.
Collection mutation attribute
An attribute that inherits from [Impure]
to indicate that the collection
changes due to this method call.
Fluent syntax mutation attribute
An attribute that inherits from [Impure]
to indicate that the returned
instance is equal to self or of the parameters, just to allow a fluent syntax.
Empty type attributes
Empty types (classes, enums, interfaces, structs) are generally seen as a bad practice, or assumed to be unfinished code. Decorating them with an attribute that explains the reason why the type is empty (for test cases for example) can help:
[EmptyClass(Justification = "")]
[EmptyEnum(Justification = "")]
[EmptyInterface(Justification = "")]
[EmptyStruct(Justification = "")]
[EmptyTestClass]
[EmptyTestEnum]
[EmptyTestInterface]
[EmptyTestStruct]
Inheritable attribute
The [Inheritable]
attribute indicates that a class is designed to be
inheritable although no virtual or protected members have been defined.
This attribute can help working with static code analyzer rule: QW0006.
Will be sealed attribute
An attribute that inherits from [Inheritable]
that indicates that the
decorated member will be sealed in the future, and that overrides are considered
obsolete code.
Mutable attribute
Indicates that a class, record, interface or struct is mutable by design. This attribute can help working with static code analyzer rules: QW0011 and QW0012.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. 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 was computed. 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 | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | 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 | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
-
net6.0
- No dependencies.
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.2 | 401 | 10/24/2024 |
2.0.1 | 1,000 | 10/10/2024 |
2.0.0 | 113 | 10/10/2024 |
1.0.0 | 8,118 | 6/28/2024 |
1.0.0-rc.1 | 56 | 6/27/2024 |
v1.0.0
- Initial version.