Skip to content

Instantly share code, notes, and snippets.

@cppshane
Last active February 18, 2022 01:16
Show Gist options
  • Save cppshane/8b6e4cf764ee8eef3212531a0ce89c73 to your computer and use it in GitHub Desktop.
Save cppshane/8b6e4cf764ee8eef3212531a0ce89c73 to your computer and use it in GitHub Desktop.
VS Code .NET API Launch Configuration
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Launch",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/bin/Debug/net5.0/example-api.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment