Skip to main content

Create a project using the Nuget template package

Install the package

  1. Go to the Ensono.Stacks.Templates package page on Nuget.
  2. Copy the command displayed on the page to install the latest version of the package.
  3. Open your terminal and run the copied command. For example:
dotnet new install Ensono.Stacks.Templates

Create a new project

  1. Open your terminal.
  2. Navigate to the folder where you want to create the new project.
  3. Run the following command to create the project:
dotnet new stacks-webapi -n Company.Project -do YourDomain --cloudProvider Azure

This command will create a folder and a repository called Company.Project with DevOps build pipelines ready for Azure DevOps.

Uninstalling a template

  1. Open your terminal.
  2. Run the following command to uninstall the template pack:
dotnet new uninstall Ensono.Stacks.Templates

Template parameter details

  • -n|--name

    • Sets the project name.
    • If you do not provide this parameter, the project name will be the same as the folder where you run the command.
  • -do|--domain

    • Sets the name of the aggregate root object. This is also the name of the collection within the CosmosDB instance.
  • -o|--output

    • Sets the path where the project will be created.
    • If you do not provide this parameter, a new folder will be created.
  • -c|--cloudProvider

    • Configures which cloud provider to use.
    • Accepted values: Azure, AWS, GCP.
  • -cicd|--cicdProvider

    • Configures which CI/CD provider templates to use.
    • Accepted values: AZDO, GHA, None.
Note

For additional information use the --help flag.