Created
October 6, 2018 11:28
-
-
Save bihe/7d61b11a96523fc300cf98a9d8b28f6e to your computer and use it in GitHub Desktop.
VSCode settings to debug AzureFunction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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