From 51ba4463df3fe84b8ffa7ec055462008b4209db7 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Tue, 22 Aug 2023 14:20:30 -0400 Subject: [PATCH] - update the templates install command to reflect dotnet cli updates --- docs/articles/guides/dotnet-new-templates.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/articles/guides/dotnet-new-templates.md b/docs/articles/guides/dotnet-new-templates.md index e76ae70c4e..dace6641ee 100644 --- a/docs/articles/guides/dotnet-new-templates.md +++ b/docs/articles/guides/dotnet-new-templates.md @@ -13,13 +13,13 @@ The template exists for each major .NET language ([C#](https://learn.microsoft.c The templates requires the [.NET Core SDK](https://www.microsoft.com/net/download). Once installed, run the following command to install the templates: ```log -dotnet new -i BenchmarkDotNet.Templates +dotnet new install BenchmarkDotNet.Templates ``` If you want to uninstall all BenchmarkDotNet templates: ```log -dotnet new -u BenchmarkDotNet.Templates +dotnet new uninstall BenchmarkDotNet.Templates ``` The template is a nuget package distributed over nuget: [BenchmarkDotNet.Templates](https://www.nuget.org/packages/BenchmarkDotNet.Templates/).