Skip to content

Instantly share code, notes, and snippets.

@elbruno
Created June 5, 2025 16:32
Show Gist options
  • Save elbruno/aca83ccd780dc7decc4dd330ab35aa07 to your computer and use it in GitHub Desktop.
Save elbruno/aca83ccd780dc7decc4dd330ab35aa07 to your computer and use it in GitHub Desktop.
vscode.dotnerun.launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET: run Active File",
"type": "coreclr",
"request": "launch",
"program": "dotnet",
"args": ["run", "${file}"],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment