The Stackage.Aws.Lambda.DotNetNew.Templates package contains a template for dotnet new to create a solution with a skeleton AWS Lambda function.
To install the Stackage.Aws.Lambda.DotNetNew.Templates package use the dotnet new --install command.
dotnet new --install Stackage.Aws.Lambda.DotNetNew.Templates
To update to the latest version of the Stackage.Aws.Lambda.DotNetNew.Templates package use the dotnet new update command. Be aware that this will attempt to update all dotnet new template packages.
dotnet new update
To create a new solution containing an AWS Lambda function use the dotnet new stackagelambda command, replacing {LAMBDA_NAME} as required (eg. Lambda.Function). This will create both a folder and a project named {LAMBDA_NAME} for your AWS Lambda function.
dotnet new stackagelambda --name {LAMBDA_NAME}
If you would like to contribute, please read through the CONTRIBUTING.md document.