Files
MicroST-Compiler/.vscode/launch.json
2025-10-12 19:06:28 +02:00

43 lines
1.6 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch STCompiler.Compiler",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/STCompiler.Compiler/bin/Debug/net8.0/STCompiler.Compiler",
"args": ["${workspaceFolder}/STCompiler.Compiler/input.st", "${workspaceFolder}/STCompiler.Compiler/output.bin"],
"cwd": "${workspaceFolder}/STCompiler.Compiler",
"console": "integratedTerminal"
},
{
"name": "Launch STCompiler.Disassembler",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/STCompiler.Disassembler/bin/Debug/net8.0/STCompiler.Disassembler",
"args": ["${workspaceFolder}/STCompiler.Compiler/output.bin"],
"cwd": "${workspaceFolder}/STCompiler.Disassembler",
"console": "integratedTerminal"
},
{
"name": "Launch STCompiler.Simulator",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/STCompiler.Simulator/bin/Debug/net8.0/STCompiler.Simulator",
"args": ["${workspaceFolder}/STCompiler.Compiler/output.bin"],
"cwd": "${workspaceFolder}/STCompiler.Simulator",
"console": "integratedTerminal"
},
{
"name": "Attach to .NET",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}