Create launch.json

This commit is contained in:
Marco Carvalho 2024-04-26 00:03:09 -03:00 committed by GitHub
parent 4a357f9d71
commit 5ab46720bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

19
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/Ryujinx.Gtk3/bin/Debug/net8.0/Ryujinx.Gtk3.dll",
"args": [],
"cwd": "${workspaceFolder}",
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}