Skip to content

Commit 9eea505

Browse files
committed
edits
1 parent 67c5e7b commit 9eea505

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/test/remote-testing.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,16 +78,16 @@ For a Dockerfile, the environment can be specified in the *testEnvironments.json
7878
}
7979
```
8080

81-
The following example shows the *testenvironments.json* file for a local container image named `<mcr.microsoft.com/dotnet/core/sdk>`.
81+
The following example shows the *testenvironments.json* file for a local container image named `<mcr.microsoft.com/dotnet/sdk>`.
8282

8383
```json
8484
{
8585
"version": "1",
8686
"environments": [
8787
{
88-
"name": "linux dotnet-core-sdk-3.1",
88+
"name": "linux dotnet-sdk-5.0",
8989
"type": "docker",
90-
"dockerImage": "mcr.microsoft.com/dotnet/core/sdk"
90+
"dockerImage": "mcr.microsoft.com/dotnet/sdk"
9191
}
9292
]
9393
}
@@ -96,7 +96,7 @@ The following example shows the *testenvironments.json* file for a local contain
9696
The following example shows a Dockerfile for running tests targeting .NET 5.0. The second line makes sure the debugger can connect and run in your container.
9797

9898
```dockerfile
99-
FROM mcr.microsoft.com/dotnet/core/sdk:5.0
99+
FROM mcr.microsoft.com/dotnet/sdk:5.0
100100

101101
RUN wget https://aka.ms/getvsdbgsh && \
102102
sh getvsdbgsh -v latest -l /vsdbg

0 commit comments

Comments
 (0)