Skip to content

Instantly share code, notes, and snippets.

@szul
Created September 25, 2018 18:42
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 szul/95cab66fe5731e8110c111ebcbe33e46 to your computer and use it in GitHub Desktop.
Save szul/95cab66fe5731e8110c111ebcbe33e46 to your computer and use it in GitHub Desktop.
Visual Studio Code launch file for Firefox debugging of TypeScript files running under IIS Express locally, as well as ASP.NET MVC .NET Framework debugging under IIS Express
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Firefox Debugger",
"type": "firefox",
"request": "attach",
"url": "http://localhost:64177/",
"webRoot": "${workspaceFolder}",
"sourceMaps": "server"
//"preLaunchTask": "Run",
},
{
"name": "iis express",
"type": "clr",
"request": "attach",
//"preLaunchTask": "Run",
"processName": "iisexpress"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment