Skip to content

Instantly share code, notes, and snippets.

@zaccharles
Last active February 17, 2019 19:39
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 zaccharles/5b3f5da49f0b8770c097f4f241857055 to your computer and use it in GitHub Desktop.
Save zaccharles/5b3f5da49f0b8770c097f4f241857055 to your computer and use it in GitHub Desktop.
LambdaRemoteDebug - Example launch.json
{
"version": "0.2.0",
"languageMappings": {
"C#": {
"languageId": "3F5162F8-07C6-11D3-9053-00C04FA302A1",
"extensions": [ "*" ]
}
},
"exceptionCategoryMappings": {
"CLR": "449EC4CC-30D2-4032-9256-EE18EB41B62B",
"MDA": "6ECE07A9-0EDE-45C4-8296-818D8FC401D4"
},
"configurations": [
{
"name": "AWS Lambda",
"type": "coreclr",
"request": "attach",
"processId": 2,
"pipeTransport": {
"pipeProgram": "plink",
"pipeArgs": [
"-batch", "-raw", "localhost", "-P", "21425"
],
"debuggerPath": "#"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment