Installation
Register the Kanject feed, then pull the packages you need.
# Add the Kanject private NuGet feed (one-time)
dotnet nuget add source https://nuget.kanject.com/v3/index.json \
--name kanject \
--username <your-email> \
--password <your-api-key> \
--store-password-in-clear-text
# Install the packages you need
dotnet add package Kanject.Core.NoSqlDatabase
dotnet add package Kanject.Core.Queue
dotnet add package Kanject.Core.FileRepository
dotnet add package Kanject.Identity.Provider.AwsCognitoV3
dotnet add package Kanject.EventHub Installing the Lambda tool
Every Kanject service deploys via the official AWS Lambda .NET tooling:
dotnet tool install -g Amazon.Lambda.Tools
dotnet tool update -g Amazon.Lambda.Tools