2021-09-26 12:11:44 +01:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
2021-11-05 07:58:48 +00:00
|
|
|
"label": "buildWeb",
|
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"${workspaceFolder}/Selector.Web/Selector.Web.csproj",
|
|
|
|
"/property:GenerateFullPaths=true",
|
|
|
|
"/consoleloggerparameters:NoSummary"
|
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "buildCLI",
|
2021-09-26 12:11:44 +01:00
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"build",
|
2021-10-12 20:23:25 +01:00
|
|
|
"${workspaceFolder}/Selector.CLI/Selector.CLI.csproj",
|
2021-09-26 12:11:44 +01:00
|
|
|
"/property:GenerateFullPaths=true",
|
|
|
|
"/consoleloggerparameters:NoSummary"
|
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "publish",
|
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"publish",
|
2021-10-12 20:23:25 +01:00
|
|
|
"${workspaceFolder}/Selector.CLI/Selector.CLI.csproj",
|
2021-09-26 12:11:44 +01:00
|
|
|
"/property:GenerateFullPaths=true",
|
|
|
|
"/consoleloggerparameters:NoSummary"
|
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "watch",
|
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"watch",
|
|
|
|
"run",
|
2021-10-12 20:23:25 +01:00
|
|
|
"${workspaceFolder}/Selector.CLI/Selector.CLI.csproj",
|
2021-09-26 12:11:44 +01:00
|
|
|
"/property:GenerateFullPaths=true",
|
|
|
|
"/consoleloggerparameters:NoSummary"
|
|
|
|
],
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|