diff --git a/docs/preview/features/azurefunctions-eventhubs-template.md b/docs/preview/features/azurefunctions-eventhubs-template.md index 957821cf..34b3c150 100644 --- a/docs/preview/features/azurefunctions-eventhubs-template.md +++ b/docs/preview/features/azurefunctions-eventhubs-template.md @@ -10,7 +10,7 @@ layout: default First, install the template from NuGet: ```shell -> dotnet new --install Arcus.Templates.AzureFunctions.EventHubs +> dotnet new install Arcus.Templates.AzureFunctions.EventHubs ``` When installed, the template can be created with shortname: `arcus-az-func-eventhubs`: diff --git a/docs/preview/features/azurefunctions-http-template.md b/docs/preview/features/azurefunctions-http-template.md index 2c6a2040..f6bd5724 100644 --- a/docs/preview/features/azurefunctions-http-template.md +++ b/docs/preview/features/azurefunctions-http-template.md @@ -10,7 +10,7 @@ layout: default First, install the template from NuGet: ```shell -> dotnet new --install Arcus.Templates.AzureFunctions.Http +> dotnet new install Arcus.Templates.AzureFunctions.Http ``` When installed, the template can be created with shortname: `arcus-az-func-http`: diff --git a/docs/preview/features/azurefunctions-servicebus-queue-template.md b/docs/preview/features/azurefunctions-servicebus-queue-template.md index d96eb7d8..360b9ae4 100644 --- a/docs/preview/features/azurefunctions-servicebus-queue-template.md +++ b/docs/preview/features/azurefunctions-servicebus-queue-template.md @@ -10,7 +10,7 @@ layout: default First, install the template from NuGet: ```shell -> dotnet new --install Arcus.Templates.AzureFunctions.ServiceBus.Queue +> dotnet new install Arcus.Templates.AzureFunctions.ServiceBus.Queue ``` When installed, the template can be created with shortname: `arcus-az-func-servicebus-queue`: diff --git a/docs/preview/features/azurefunctions-servicebus-topic-template.md b/docs/preview/features/azurefunctions-servicebus-topic-template.md index 1ec814cf..9ceb3dc6 100644 --- a/docs/preview/features/azurefunctions-servicebus-topic-template.md +++ b/docs/preview/features/azurefunctions-servicebus-topic-template.md @@ -10,7 +10,7 @@ layout: default First, install the template from NuGet: ```shell -> dotnet new --install Arcus.Templates.AzureFunctions.ServiceBus.Topic +> dotnet new install Arcus.Templates.AzureFunctions.ServiceBus.Topic ``` When installed, the template can be created with shortname: `arcus-az-func-servicebus-topic`: diff --git a/docs/preview/features/eventhubs-worker-template.md b/docs/preview/features/eventhubs-worker-template.md index 991d54e0..cf8e4b55 100644 --- a/docs/preview/features/eventhubs-worker-template.md +++ b/docs/preview/features/eventhubs-worker-template.md @@ -10,7 +10,7 @@ layout: default First, install the template from NuGet: ```shell -> dotnet new --install Arcus.Templates.EventHubs +> dotnet new install Arcus.Templates.EventHubs ``` When installed, the template can be created with shortname: `arcus-eventhubs`: diff --git a/docs/preview/features/servicebus-queue-worker-template.md b/docs/preview/features/servicebus-queue-worker-template.md index b600b9c1..5ae25deb 100644 --- a/docs/preview/features/servicebus-queue-worker-template.md +++ b/docs/preview/features/servicebus-queue-worker-template.md @@ -10,7 +10,7 @@ layout: default First, install the template from NuGet: ```shell -> dotnet new --install Arcus.Templates.ServiceBus.Queue +> dotnet new install Arcus.Templates.ServiceBus.Queue ``` When installed, the template can be created with shortname: `arcus-servicebus-queue`: diff --git a/docs/preview/features/servicebus-topic-worker-template.md b/docs/preview/features/servicebus-topic-worker-template.md index 66cae172..deddd0d1 100644 --- a/docs/preview/features/servicebus-topic-worker-template.md +++ b/docs/preview/features/servicebus-topic-worker-template.md @@ -10,7 +10,7 @@ layout: default First, install the template from NuGet: ```shell -> dotnet new --install Arcus.Templates.ServiceBus.Topic +> dotnet new install Arcus.Templates.ServiceBus.Topic ``` When installed, the template can be created with shortname: `arcus-servicebus-topic`: diff --git a/docs/preview/features/using-arcus-templates-in-visualstudio.md b/docs/preview/features/using-arcus-templates-in-visualstudio.md index 2f0a0100..efba518f 100644 --- a/docs/preview/features/using-arcus-templates-in-visualstudio.md +++ b/docs/preview/features/using-arcus-templates-in-visualstudio.md @@ -9,7 +9,7 @@ The available .NET project templates in this repository are all available via th For example: ```shell -PM > dotnet new --install Arcus.Templates.WebApi +PM > dotnet new install Arcus.Templates.WebApi ``` Which will install the template on your machine so it can be used for creating new projects: diff --git a/docs/preview/features/web-api-template.md b/docs/preview/features/web-api-template.md index 43ce04b5..ba216185 100644 --- a/docs/preview/features/web-api-template.md +++ b/docs/preview/features/web-api-template.md @@ -10,7 +10,7 @@ layout: default First, install the template from NuGet: ```shell -> dotnet new --install Arcus.Templates.WebApi +> dotnet new install Arcus.Templates.WebApi ``` When installed, the template can be created with shortname: `arcus-webapi`: