Getting started

Add NuGet package

This package is available on NuGet: PPWCode.API.Core.

You can use your IDE to add it as a dependency to your project, or manually add it in the .csproj file. You would typically add this project as a dependency to your API project. This would look similar to the following:

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

    <ItemGroup>
        <!-- nuget package dependencies -->
        <PackageReference Include="PPWCode.API.Core" Version="2.0.0" />
        <PackageReference Include="PPWCode.API.Core.Services" Version="2.0.0" />
    </ItemGroup>

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

After the package is added, you can use the base classes and interfaces from PPWCode.API.Core in your code.