Skip to content

Instantly share code, notes, and snippets.

@bihe
Created October 6, 2018 11:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bihe/7d61b11a96523fc300cf98a9d8b28f6e to your computer and use it in GitHub Desktop.
Save bihe/7d61b11a96523fc300cf98a9d8b28f6e to your computer and use it in GitHub Desktop.
VSCode settings to debug AzureFunction
{
// 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
"version": "0.2.0",
"configurations": [
{
"name": "Attach to C# Functions",
"type": "coreclr",
"request": "attach",
"processId": "${command:azureFunctions.pickProcess}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment