MicroElements.CodeContracts.Sources
1.3.0
dotnet add package MicroElements.CodeContracts.Sources --version 1.3.0
NuGet\Install-Package MicroElements.CodeContracts.Sources -Version 1.3.0
<PackageReference Include="MicroElements.CodeContracts.Sources" Version="1.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
paket add MicroElements.CodeContracts.Sources --version 1.3.0
#r "nuget: MicroElements.CodeContracts.Sources, 1.3.0"
// Install MicroElements.CodeContracts.Sources as a Cake Addin
#addin nuget:?package=MicroElements.CodeContracts.Sources&version=1.3.0
// Install MicroElements.CodeContracts.Sources as a Cake Tool
#tool nuget:?package=MicroElements.CodeContracts.Sources&version=1.3.0
MicroElements.CodeContracts.Sources
MicroElements source only package: CodeContracts.
Source only package does not forces binary reference on it. Just add package and use as code.
Usage
void Foo(string arg)
{
// Method arguments checks
arg.AssertArgumentNotNull(nameof(arg));
// Argument usage
UseArg(arg);
}
void Bar(string arg)
{
// Can be used as inplace replacement of UseArg(arg);
UseArg(arg.AssertArgumentNotNull(nameof(arg)));
}
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- MicroElements.JetBrains.Sources (>= 1.2.0)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on MicroElements.CodeContracts.Sources:
Package | Downloads |
---|---|
MicroElements.Collections.Sources
MicroElements source only package: Collection extensions: NotNull, Iterate, Materialize, IncludeByWildcardPatterns, ExcludeByWildcardPatterns. Special collections: TwoLayerCache. |
|
MicroElements.Shared.Sources
MicroElements source packages metapackage. |
|
MicroElements.Formatting.Sources
MicroElements source only package: Formatting. Main methods: FormatValue, FormatAsTuple. |
|
MicroElements.Collections.Extensions.Sources
MicroElements source only package: Collection extensions. Main methods: NotNull. |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on MicroElements.CodeContracts.Sources:
Repository | Stars |
---|---|
micro-elements/MicroElements.Swashbuckle.FluentValidation
Use FluentValidation rules instead of ComponentModel attributes
|
# Changelog
## [1.3.0] - 2022-05-15
- Changed: Added CallerArgumentExpression to AssertArgumentNotNull that allows to omit argument name
## [1.2.0] - 2022-01-12
- Changed: MicroElements.JetBrains.Sources bumped to 1.2.0
## [1.1.0] - 2021-12-10
- Changed: MicroElements.JetBrains.Sources bumped to 1.1.0
## [1.0.0] - 2021-11-08
- Added: AssertArgumentNotNull
Full release notes can be found at: https://github.com/micro-elements/MicroElements.Shared/blob/master/src/MicroElements.CodeContracts.Sources/CHANGELOG.md