Getting started
Add NuGet package
All libraries that are part of the PPWCode.Util.Validation.IV project are published on NuGet.
The following packages are available:
-
PPWCode.Util.Validation.IV, base library
-
PPWCode.Util.Validation.IV.EntityFrameworkCore, Entity Framework Core support
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.IV" Version="1.0.0" />
<PackageReference Include="PPWCode.Util.Validation.IV.EntityFrameworkCore" Version="1.0.0" />
</ItemGroup>
<!-- ... -->
</Project>