Getting started

Add NuGet package

All libraries that are part of the PPWCode.Util.Validation.III project are published on NuGet.

The following packages are available:

You can use your IDE to add the required libraries as dependencies to your project, or manually add them in the .csproj file. This would look similar to the following:

<Project Sdk="Microsoft.NET.Sdk">
    <!-- ... -->

    <ItemGroup>
        <!-- nuget package dependencies -->
        <PackageReference Include="PPWCode.Util.Validation.III" Version="2.0.0" />
        <PackageReference Include="PPWCode.Util.Validation.III.NHibernate" Version="2.0.0" />
    </ItemGroup>

    <!-- ... -->
</Project>