Skip to content

Commit

Permalink
debug launch task
Browse files Browse the repository at this point in the history
  • Loading branch information
olitomlinson committed Aug 30, 2023
1 parent d9e3177 commit b670fd3
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,20 @@
}
},
{
"name": ".NET Core Attach",
"name": "Debug .NET",
"type": "coreclr",
"request": "attach"
},
{
"name": "Docker .NET Launch",
"type": "docker",
"request": "launch",
"preLaunchTask": "docker-run: debug",
"netCore": {
"appProject": "${workspaceFolder}/src/Component.csproj"
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/bin/Debug/net6.0/Component.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
}
},
]
}

0 comments on commit b670fd3

Please sign in to comment.