0
0
RhSolutions-ML/.vscode/tasks.json

41 lines
1.1 KiB
JSON
Raw Normal View History

2023-09-20 08:18:22 +03:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
2023-09-20 13:46:55 +03:00
"${workspaceFolder}/RhSolutions.ML.sln",
2023-09-20 08:18:22 +03:00
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
2023-09-20 13:46:55 +03:00
"${workspaceFolder}/RhSolutions.ML.sln",
2023-09-20 08:18:22 +03:00
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
2023-09-20 13:46:55 +03:00
"${workspaceFolder}/RhSolutions.ML.sln"
2023-09-20 08:18:22 +03:00
],
"problemMatcher": "$msCompile"
}
]
}