зеркало из https://github.com/dotnet/roslyn.git
86 строки
3.3 KiB
JSON
86 строки
3.3 KiB
JSON
{
|
|
// Use IntelliSense to find out which attributes exist for C# debugging
|
|
// Use hover for the description of the existing attributes
|
|
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch BuildValidator.dll",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"preLaunchTask": "build",
|
|
// If you have changed target frameworks, make sure to update the program path.
|
|
"program": "${workspaceFolder}/artifacts/bin/BuildValidator/Debug/net9.0/BuildValidator.dll",
|
|
"args": [
|
|
"--assembliesPath", "./artifacts/obj/csc/Debug/net9.0",
|
|
"--referencesPath", "./artifacts/bin",
|
|
"--referencesPath", "C:/Program Files/dotnet/packs/Microsoft.AspNetCore.App.Ref",
|
|
"--referencesPath", "C:/Program Files/dotnet/packs/Microsoft.NETCore.App.Ref",
|
|
"--debugPath", "./artifacts/BuildValidator",
|
|
"--sourcePath", "."
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"stopAtEntry": false,
|
|
"console": "internalConsole"
|
|
},
|
|
{
|
|
"name": "Launch RunTests.dll",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"preLaunchTask": "build",
|
|
// If you have changed target frameworks, make sure to update the program path.
|
|
"program": "${workspaceFolder}/artifacts/bin/RunTests/Debug/net9.0/RunTests.dll",
|
|
"args": ["--runtime", "both", "--artifactspath", "${workspaceFolder}/artifacts/testPayload/artifacts"],
|
|
"cwd": "${workspaceFolder}/artifacts/bin/RunTests",
|
|
"stopAtEntry": false,
|
|
"console": "internalConsole"
|
|
},
|
|
{
|
|
"name": "Launch PrepareTests.dll",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"preLaunchTask": "build",
|
|
// If you have changed target frameworks, make sure to update the program path.
|
|
"program": "${workspaceFolder}/artifacts/bin/PrepareTests/Debug/net9.0/PrepareTests.dll",
|
|
"args": [
|
|
"--source", "${workspaceFolder}",
|
|
"--destination", "${workspaceFolder}/artifacts/testPayload"
|
|
],
|
|
"cwd": "${workspaceFolder}/artifacts/bin/PrepareTests",
|
|
"stopAtEntry": false,
|
|
"console": "internalConsole"
|
|
},
|
|
{
|
|
"name": "Launch Replay.dll",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"preLaunchTask": "build current project",
|
|
// If you have changed target frameworks, make sure to update the program path.
|
|
"program": "${workspaceFolder}/artifacts/bin/Replay/Debug/net9.0/Replay.dll",
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}/artifacts/bin/Replay",
|
|
"stopAtEntry": false,
|
|
"console": "internalConsole"
|
|
},
|
|
{
|
|
"name": ".NET Core Launch (console)",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"preLaunchTask": "build",
|
|
// If you have changed target frameworks, make sure to update the program path.
|
|
"program": "${workspaceFolder}/artifacts/bin/csc/Debug/net9.0/csc.dll",
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}/src/Compilers/CSharp/csc",
|
|
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
|
|
"console": "internalConsole",
|
|
"stopAtEntry": false
|
|
},
|
|
{
|
|
"name": ".NET Core Attach",
|
|
"type": "coreclr",
|
|
"request": "attach",
|
|
"processId": "${command:pickProcess}"
|
|
}
|
|
]
|
|
}
|