Installation
Install from nuget.org (Recommended)
Section titled “Install from nuget.org (Recommended)”Packages are available on nuget.org. Run the following command in your project directory to install the core package:
dotnet add package AxisEndpointsFor the CSV extension:
dotnet add package AxisEndpoints.Extensions.CsvHelper AxisEndpoints Core package
AxisEndpoints.Extensions.CsvHelper CSV import/export extension
Install from local nupkg
Section titled “Install from local nupkg”If you are building from source or testing a pre-release version, you can install from a local .nupkg file:
# Build the NuGet packagedotnet pack src/AxisEndpoints/AxisEndpoints.csproj -o <LocalNupkgDirectory>
# Add it to your projectdotnet add <YourProject> package AxisEndpoints --source <LocalNupkgDirectory>Once installed, proceed to the Quick Start guide to set up your first endpoint.