From e5acde77b624db2e8a34c086451dd7f53cd3d05c Mon Sep 17 00:00:00 2001 From: Tom Kerkhove Date: Tue, 28 Dec 2021 14:36:18 +0100 Subject: [PATCH] docs: Update template command (#341) Update template command given the current one is not valid: ``` $ dotnet new -n Sandbox.Generated.Operator operator Error: Invalid option(s): operator For usage information, run: dotnet new -h ``` --- docs/docs/templates.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/templates.md b/docs/docs/templates.md index 8794000e..3c9746fc 100644 --- a/docs/docs/templates.md +++ b/docs/docs/templates.md @@ -36,7 +36,7 @@ _Type_: Generate a project _Templatename_: `operator-empty` -_Example installation_: `dotnet new -n MyOperator operator-empty` +_Example installation_: `dotnet new operator-empty -n MyOperator` _Description_: This template contains the well known `Program.cs` @@ -52,7 +52,7 @@ _Type_: Generate a project _Templatename_: `operator` -_Example installation_: `dotnet new -n MyOperator operator` +_Example installation_: `dotnet new operator -n MyOperator` _Description_: This template contains the well known `Program.cs`