Qowaiv.Validation.Abstractions 0.3.0

dotnet add package Qowaiv.Validation.Abstractions --version 0.3.0
NuGet\Install-Package Qowaiv.Validation.Abstractions -Version 0.3.0
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="Qowaiv.Validation.Abstractions" Version="0.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Qowaiv.Validation.Abstractions --version 0.3.0
#r "nuget: Qowaiv.Validation.Abstractions, 0.3.0"
#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 Qowaiv.Validation.Abstractions as a Cake Addin
#addin nuget:?package=Qowaiv.Validation.Abstractions&version=0.3.0

// Install Qowaiv.Validation.Abstractions as a Cake Tool
#tool nuget:?package=Qowaiv.Validation.Abstractions&version=0.3.0

Qowaiv Validation supports a generic interface for (domain) model validation.

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 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.
  • net5.0

    • No dependencies.
  • net6.0

    • No dependencies.
  • net7.0

    • No dependencies.

NuGet packages (8)

Showing the top 5 NuGet packages that depend on Qowaiv.Validation.Abstractions:

Package Downloads
Qowaiv.Validation.DataAnnotations

Qowaiv Validation supports a generic interface for (domain) model validation.

Qowaiv.Validation.Messages

Qowaiv Validation supports a generic interface for (domain) model validation.

Qowaiv.Validation.Fluent

Qowaiv Validation supports a generic interface for (domain) model validation.

Qowaiv.DomainModel

Qowaiv implements common, universal domain objects. These types form the base of your domain model.

Qowaiv.Validation.Guarding

Qowaiv Validation supports a generic interface for (domain) model validation.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.3.0 36,990 3/7/2023
0.2.1 37,667 4/13/2022
0.1.3 4,163 3/24/2022
0.1.2 20,024 10/7/2021
0.1.1 16,883 9/10/2021
0.1.0 12,656 8/31/2021
0.0.5 821 8/19/2021
0.0.4 17,319 7/30/2020
0.0.3 9,048 11/25/2019
0.0.2 3,690 11/1/2019
0.0.1 2,379 7/30/2019

v0.3.0
- Add Result<T>.Cast<TOut>(). #61
- Support .NET 7.0. #62
v0.2.1
- Nullable anotations. #48
v0.1.3
- Result.Null() also for (nullable) structs. #46
v0.1.2
- Dealing with Result.Null() values internally should not throw. #42
v0.1.1
- Decorate pure methods with attribute. #38
v0.1.0
- ContinueOnCapturedContext is configurable. #35
- Introduction of Result.Null<T>(). #34
- Disallow Result.<T>For(null). #34
- Act() and ActAsync() are also executed for null values. #34
- Result.OK is static readonly field (was static property). #32
- Improvements on InvalidModelException. #31
v0.0.5
- Act() methods on context. #29
- AsTask() method for Result<T>. #28
v0.0.4
- Act() methods have pipe notation alternatives.