mirror of
https://github.com/Ryubing/RyujinxHelper.git
synced 2025-05-13 02:30:36 +01:00

ImGui was very fun to use but ultimately, it's very intensive for what it is. It showed 3 panes and sat at 20% CPU usage on my 13700F. I'm not sure if my code was just bad or if this is how ImGui is.
42 lines
No EOL
1.9 KiB
JSON
42 lines
No EOL
1.9 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
// 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
|
|
"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}/src/UI/bin/Debug/net8.0/Volte.UI.dll",
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}/src/UI/bin/Debug/net8.0",
|
|
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
|
|
"console": "integratedTerminal",
|
|
"stopAtEntry": false
|
|
},
|
|
{
|
|
// 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
|
|
"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}/src/Bot/bin/Debug/net8.0/Volte.dll",
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}/src/Bot/bin/Debug/net8.0",
|
|
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
|
|
"console": "integratedTerminal",
|
|
"stopAtEntry": false
|
|
},
|
|
{
|
|
"name": ".NET Core Attach",
|
|
"type": "coreclr",
|
|
"request": "attach"
|
|
}
|
|
]
|
|
} |