Skip to content

Commit dfd7eb6

Browse files
authored
Merge pull request #2508 from dotnet/copilot/update-runtime-versions
Update sample concurrent runtime acquisition to use .NET 8.0, 9.0, 10.0
2 parents f934273 + 2820b2e commit dfd7eb6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sample/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
},
5353
{
5454
"command": "sample.dotnet.concurrentTest",
55-
"title": "Concurrently acquire all 2.X .NET Core runtimes",
55+
"title": "Concurrently acquire .NET runtimes (8.0, 9.0, 10.0)",
5656
"category": "Sample"
5757
},
5858
{

sample/src/extension.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,13 +201,13 @@ ${stderr}`);
201201

202202
const sampleConcurrentTest = vscode.commands.registerCommand('sample.dotnet.concurrentTest', async () =>
203203
{
204-
await acquireConcurrent(['2.0', '2.1', '2.2'], 'runtime');
204+
await acquireConcurrent(['8.0', '9.0', '10.0'], 'runtime');
205205
});
206206

207207
const sampleConcurrentASPNETTest = vscode.commands.registerCommand('sample.dotnet.concurrentASPNETTest', async () =>
208208
{
209-
acquireConcurrent(['6.0', '8.0', '7.0'], 'runtime') // start this so we test concurrent types of runtime installs
210-
await acquireConcurrent(['6.0', '8.0', '7.0'], 'aspnetcore');
209+
acquireConcurrent(['8.0', '9.0', '10.0'], 'runtime') // start this so we test concurrent types of runtime installs
210+
await acquireConcurrent(['8.0', '9.0', '10.0'], 'aspnetcore');
211211
});
212212

213213
const sampleShowAcquisitionLogRegistration = vscode.commands.registerCommand('sample.dotnet.showAcquisitionLog', async () =>

0 commit comments

Comments
 (0)