Skip to content

Commit 5aa54ba

Browse files
committed
fixed links in the articles
1 parent 4d7aee8 commit 5aa54ba

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/core/testing/unit-testing-code-coverage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The "system under test" refers to the code that you're writing unit tests agains
2222

2323
### Create a class library
2424

25-
From a command prompt in a new directory named `UnitTestingCodeCoverage`, create a new .NET standard class library using the [`dotnet new classlib`](../tools/dotnet-new.md#classlib) command:
25+
From a command prompt in a new directory named `UnitTestingCodeCoverage`, create a new .NET standard class library using the [`dotnet new classlib`](../tools/dotnet-new-sdk-templates.md#classlib) command:
2626

2727
```dotnetcli
2828
dotnet new classlib -n Numbers
@@ -60,7 +60,7 @@ namespace System.Numbers
6060
6161
### Create test projects
6262

63-
Create two new **xUnit Test Project (.NET Core)** templates from the same command prompt using the [`dotnet new xunit`](../tools/dotnet-new.md#test) command:
63+
Create two new **xUnit Test Project (.NET Core)** templates from the same command prompt using the [`dotnet new xunit`](../tools/dotnet-new-sdk-templates.md#test) command:
6464

6565
```dotnetcli
6666
dotnet new xunit -n XUnit.Coverlet.Collector

docs/csharp/programming-guide/concepts/async/cancel-an-async-task-or-a-list-of-tasks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This tutorial requires the following:
2828

2929
### Create example application
3030

31-
Create a new .NET Core console application. You can create one by using the [`dotnet new console`](../../../../core/tools/dotnet-new.md#console) command or from [Visual Studio](/visualstudio/install/install-visual-studio). Open the *Program.cs* file in your favorite code editor.
31+
Create a new .NET Core console application. You can create one by using the [`dotnet new console`](../../../../core/tools/dotnet-new-sdk-templates.md#console) command or from [Visual Studio](/visualstudio/install/install-visual-studio). Open the *Program.cs* file in your favorite code editor.
3232

3333
### Replace using statements
3434

docs/csharp/programming-guide/concepts/async/start-multiple-async-tasks-and-process-them-as-they-complete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The following example uses a query to create a collection of tasks. Each task do
1414

1515
## Create example application
1616

17-
Create a new .NET Core console application. You can create one by using the [dotnet new console](../../../../core/tools/dotnet-new.md#console) command or from [Visual Studio](/visualstudio/install/install-visual-studio). Open the *Program.cs* file in your favorite code editor.
17+
Create a new .NET Core console application. You can create one by using the [dotnet new console](../../../../core/tools/dotnet-new-sdk-templates.md#console) command or from [Visual Studio](/visualstudio/install/install-visual-studio). Open the *Program.cs* file in your favorite code editor.
1818

1919
### Replace using statements
2020

0 commit comments

Comments
 (0)