Created
June 24, 2024 16:20
-
-
Save elusive/891f496b61a39a83e847e44f38f40a3d to your computer and use it in GitHub Desktop.
dotnet core web api in vscode
This file contains 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 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": ".NET Core Launch (web)", | |
"type": "coreclr", | |
"request": "launch", | |
"preLaunchTask": "build", | |
"program": "${workspaceFolder}/Utililog.Api/bin/Debug/net8.0/Utililog.Api.dll", | |
"args": [], | |
"cwd": "${workspaceFolder}", | |
"stopAtEntry": false, | |
"serverReadyAction": { | |
"action": "openExternally", | |
"pattern": "\\bNow listening on:\\s+(https?://\\S+)" | |
}, | |
"env": { | |
"ASPNETCORE_ENVIRONMENT": "Development" | |
}, | |
"sourceFileMap": { | |
"/Views": "${workspaceFolder}/Views" | |
} | |
}, | |
{ | |
"name": ".NET Core Attach", | |
"type": "coreclr", | |
"request": "attach" | |
} | |
] | |
} |
This file contains 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
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "build", | |
"command": "dotnet", | |
"type": "process", | |
"args": [ | |
"build", | |
"${workspaceFolder}/Utililog.Api.csproj", | |
"/property:GenerateFullPaths=true", | |
"/consoleloggerparameters:NoSummary" | |
], | |
"problemMatcher": "$msCompile" | |
}, | |
{ | |
"label": "publish", | |
"command": "dotnet", | |
"type": "process", | |
"args": [ | |
"publish", | |
"${workspaceFolder}/Utililog.Api.csproj", | |
"/property:GenerateFullPaths=true", | |
"/consoleloggerparameters:NoSummary" | |
], | |
"problemMatcher": "$msCompile" | |
}, | |
{ | |
"label": "watch", | |
"command": "dotnet", | |
"type": "process", | |
"args": [ | |
"watch", | |
"run", | |
"${workspaceFolder}/Utililog.Api.csproj", | |
"/property:GenerateFullPaths=true", | |
"/consoleloggerparameters:NoSummary" | |
], | |
"problemMatcher": "$msCompile" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment