WeatherDashboard/.vscode/tasks.json

59 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2023-03-19 02:11:40 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/WeatherDashboard.Console/WeatherDashboard.Console.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
2023-03-19 02:27:17 +00:00
{
"label": "buildweb",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/WeatherDashboard.Web/WeatherDashboard.Web.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
2023-03-20 02:06:44 +00:00
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
2023-03-19 02:27:17 +00:00
},
2023-03-19 02:11:40 +00:00
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/WeatherDashboard.Console/WeatherDashboard.Console.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/WeatherDashboard.Console/WeatherDashboard.Console.csproj"
],
"problemMatcher": "$msCompile"
}
]
}