Skip to content

Commit bac6980

Browse files
[main] Source code updates from dotnet/roslyn (dotnet#4216)
[main] Source code updates from dotnet/roslyn
1 parent e799750 commit bac6980

32 files changed

+362
-281
lines changed

src/roslyn/.vscode/launch.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"request": "launch",
1111
"preLaunchTask": "build",
1212
// If you have changed target frameworks, make sure to update the program path.
13-
"program": "${workspaceFolder}/artifacts/bin/BuildValidator/Debug/net9.0/BuildValidator.dll",
13+
"program": "${workspaceFolder}/artifacts/bin/BuildValidator/Debug/net10.0/BuildValidator.dll",
1414
"args": [
15-
"--assembliesPath", "./artifacts/obj/csc/Debug/net9.0",
15+
"--assembliesPath", "./artifacts/obj/csc/Debug/net10.0",
1616
"--referencesPath", "./artifacts/bin",
1717
"--referencesPath", "C:/Program Files/dotnet/packs/Microsoft.AspNetCore.App.Ref",
1818
"--referencesPath", "C:/Program Files/dotnet/packs/Microsoft.NETCore.App.Ref",
@@ -29,7 +29,7 @@
2929
"request": "launch",
3030
"preLaunchTask": "build",
3131
// If you have changed target frameworks, make sure to update the program path.
32-
"program": "${workspaceFolder}/artifacts/bin/RunTests/Debug/net9.0/RunTests.dll",
32+
"program": "${workspaceFolder}/artifacts/bin/RunTests/Debug/net10.0/RunTests.dll",
3333
"args": ["--runtime", "both", "--artifactspath", "${workspaceFolder}/artifacts/testPayload/artifacts"],
3434
"cwd": "${workspaceFolder}/artifacts/bin/RunTests",
3535
"stopAtEntry": false,
@@ -41,7 +41,7 @@
4141
"request": "launch",
4242
"preLaunchTask": "build",
4343
// If you have changed target frameworks, make sure to update the program path.
44-
"program": "${workspaceFolder}/artifacts/bin/PrepareTests/Debug/net9.0/PrepareTests.dll",
44+
"program": "${workspaceFolder}/artifacts/bin/PrepareTests/Debug/net10.0/PrepareTests.dll",
4545
"args": [
4646
"--source", "${workspaceFolder}",
4747
"--destination", "${workspaceFolder}/artifacts/testPayload"
@@ -56,7 +56,7 @@
5656
"request": "launch",
5757
"preLaunchTask": "build current project",
5858
// If you have changed target frameworks, make sure to update the program path.
59-
"program": "${workspaceFolder}/artifacts/bin/Replay/Debug/net9.0/Replay.dll",
59+
"program": "${workspaceFolder}/artifacts/bin/Replay/Debug/net10.0/Replay.dll",
6060
"args": [],
6161
"cwd": "${workspaceFolder}/artifacts/bin/Replay",
6262
"stopAtEntry": false,
@@ -137,7 +137,7 @@
137137
"request": "launch",
138138
"preLaunchTask": "build",
139139
// If you have changed target frameworks, make sure to update the program path.
140-
"program": "${workspaceFolder}/artifacts/bin/csc/Debug/net9.0/csc.dll",
140+
"program": "${workspaceFolder}/artifacts/bin/csc/Debug/net10.0/csc.dll",
141141
"args": [],
142142
"cwd": "${workspaceFolder}/src/Compilers/CSharp/csc",
143143
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console

src/roslyn/.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@
171171
"type": "process",
172172
"options": {
173173
"env": {
174-
"DOTNET_ROSLYN_SERVER_PATH": "${workspaceRoot}/artifacts/bin/Microsoft.CodeAnalysis.LanguageServer/Debug/net9.0/Microsoft.CodeAnalysis.LanguageServer.dll"
174+
"DOTNET_ROSLYN_SERVER_PATH": "${workspaceRoot}/artifacts/bin/Microsoft.CodeAnalysis.LanguageServer/Debug/net10.0/Microsoft.CodeAnalysis.LanguageServer.dll"
175175
}
176176
},
177177
"dependsOn": [ "build language server" ]

0 commit comments

Comments
 (0)