diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000000..4cdd5c61a8 --- /dev/null +++ b/.vscode/launch.json @@ -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" + } + ] +}