You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/articles/guides/dotnet-new-templates.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -13,13 +13,13 @@ The template exists for each major .NET language ([C#](https://learn.microsoft.c
13
13
The templates requires the [.NET Core SDK](https://www.microsoft.com/net/download). Once installed, run the following command to install the templates:
14
14
15
15
```log
16
-
dotnet new -i BenchmarkDotNet.Templates
16
+
dotnet new install BenchmarkDotNet.Templates
17
17
```
18
18
19
19
If you want to uninstall all BenchmarkDotNet templates:
20
20
21
21
```log
22
-
dotnet new -u BenchmarkDotNet.Templates
22
+
dotnet new uninstall BenchmarkDotNet.Templates
23
23
```
24
24
25
25
The template is a nuget package distributed over nuget: [BenchmarkDotNet.Templates](https://www.nuget.org/packages/BenchmarkDotNet.Templates/).
0 commit comments