Table of Contents

Installing Project Templates

Install the Scaleout.Templates package to make the Invocation Grid project template available through .NET Core's dotnet new command.

Background

.NET Core's dotnet command provides commands for creating, managing, and running .NET Core projects. Third-party .NET project templates can be installed from NuGet.org using the dotnet new --install option.

Note

Once a custom project template is installed using dotnet new --install, it also becomes available in Visual Studio's New Project dialog.

Prerequisites

.NET Core 3.1 or higher.

Installation

dotnet new --install Scaleout.Templates

Updating

The --update-check and --update-apply options check NuGet.org for updates for all of the templates that are installed on the local system.

dotnet new --update-check

dotnet new --update-apply

Uninstall

dotnet new -u Scaleout.Templates