Compare commits

...

2 Commits

Author SHA1 Message Date
derek.holloway e88c7111e6 add lauch task for F5 2025-06-18 13:47:17 -07:00
derek.holloway 7c3ac165b7 Update .gitignore 2025-06-18 13:47:09 -07:00
2 changed files with 25 additions and 1 deletions
-1
View File
@@ -2,5 +2,4 @@
**/obj
.git
.env
.vscode
data
+25
View File
@@ -0,0 +1,25 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build",
"program": "${workspaceFolder}/src/MistoxWebsite.Server/bin/Debug/net9.0/MistoxWebsite.Server.dll",
"args":[],
"cwd": "${workspaceFolder}/src/MistoxWebsite.Server/",
"stopAtEntry": false,
"serverReadyAction":{
"action": "openExternally",
"killOnServerStop": false
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
}
]
}