PowerUtils.GuardClauses.Validations
1.2.0
See the version list below for details.
dotnet add package PowerUtils.GuardClauses.Validations --version 1.2.0
NuGet\Install-Package PowerUtils.GuardClauses.Validations -Version 1.2.0
<PackageReference Include="PowerUtils.GuardClauses.Validations" Version="1.2.0" />
paket add PowerUtils.GuardClauses.Validations --version 1.2.0
#r "nuget: PowerUtils.GuardClauses.Validations, 1.2.0"
// Install PowerUtils.GuardClauses.Validations as a Cake Addin #addin nuget:?package=PowerUtils.GuardClauses.Validations&version=1.2.0 // Install PowerUtils.GuardClauses.Validations as a Cake Tool #tool nuget:?package=PowerUtils.GuardClauses.Validations&version=1.2.0
Helpers, extensions and utilities to work with guard clause
Product | Versions 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 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 was computed. 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 | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- PowerUtils.Net.Primitives (>= 1.2.0)
- PowerUtils.Text (>= 2.1.0)
- PowerUtils.Validations.Primitives (>= 1.0.0)
-
net5.0
- PowerUtils.Net.Primitives (>= 1.2.0)
- PowerUtils.Text (>= 2.1.0)
- PowerUtils.Validations.Primitives (>= 1.0.0)
-
net6.0
- PowerUtils.Net.Primitives (>= 1.2.0)
- PowerUtils.Text (>= 2.1.0)
- PowerUtils.Validations.Primitives (>= 1.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
- Added Guard `Guard.Validate.IfEquals()`;
- Added Guard `Guard.Validate.IfDifferent()`;
- Discontinued the validation `string.IfLengthZero`, Can use the `string.IfEmpty` because it does the same validation;
- Discontinued the validation `string.IfLengthDifference`, Can use the `string.IfLengthDifferent` because the name is wrong;
- Discontinued the validation `string.IfLengthGreaterThan`, Can use the `string.IfLongerThan`. Improved method name;
- Discontinued the validation `string.IfLengthLessThan`, Can use the `string.IfShorterThan`. Improved method name;
- Discontinued the validation `string.NotEmail`, Can use the `string.IfNotEmail` because the name is wrong;