Getting started
Add NuGet package
All libraries that are part of the PPWCode.AspNetCore.Host.I are published on NuGet.
The following packages are available:
-
PPWCode.AspNetCore.Host.I, base library
-
PPWCode.AspNetCore.Host.I.EntityFrameworkCore, support for Entity Framework Core
You can use your IDE to add it as a dependency to your project, or manually add it in the .csproj file. This would look similar to the following:
<Project Sdk="Microsoft.NET.Sdk">
<!-- ... -->
<ItemGroup>
<!-- nuget package dependencies -->
<PackageReference Include="PPWCode.AspNetCore.Host.I" Version="1.0.0" />
<PackageReference Include="PPWCode.AspNetCore.Host.I.EntityFrameworkCore" Version="1.0.0" />
</ItemGroup>
<!-- ... -->
</Project>