Skip to content

Installation

Packages are available on nuget.org. Run the following command in your project directory to install the core package:

Terminal window
dotnet add package AxisEndpoints

For the CSV extension:

Terminal window
dotnet add package AxisEndpoints.Extensions.CsvHelper

If you are building from source or testing a pre-release version, you can install from a local .nupkg file:

Terminal window
# Build the NuGet package
dotnet pack src/AxisEndpoints/AxisEndpoints.csproj -o <LocalNupkgDirectory>
# Add it to your project
dotnet add <YourProject> package AxisEndpoints --source <LocalNupkgDirectory>

Once installed, proceed to the Quick Start guide to set up your first endpoint.