42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
|
{
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "build",
|
||
|
"command": "dotnet",
|
||
|
"type": "process",
|
||
|
"args": [
|
||
|
"build",
|
||
|
"${workspaceFolder}/examples/CSharp/Example/CSharp_Example.csproj",
|
||
|
"/property:GenerateFullPaths=true",
|
||
|
"/consoleloggerparameters:NoSummary"
|
||
|
],
|
||
|
"problemMatcher": "$msCompile"
|
||
|
},
|
||
|
{
|
||
|
"label": "publish",
|
||
|
"command": "dotnet",
|
||
|
"type": "process",
|
||
|
"args": [
|
||
|
"publish",
|
||
|
"${workspaceFolder}/examples/CSharp/Example/CSharp_Example.csproj",
|
||
|
"/property:GenerateFullPaths=true",
|
||
|
"/consoleloggerparameters:NoSummary"
|
||
|
],
|
||
|
"problemMatcher": "$msCompile"
|
||
|
},
|
||
|
{
|
||
|
"label": "watch",
|
||
|
"command": "dotnet",
|
||
|
"type": "process",
|
||
|
"args": [
|
||
|
"watch",
|
||
|
"run",
|
||
|
"${workspaceFolder}/examples/CSharp/Example/CSharp_Example.csproj",
|
||
|
"/property:GenerateFullPaths=true",
|
||
|
"/consoleloggerparameters:NoSummary"
|
||
|
],
|
||
|
"problemMatcher": "$msCompile"
|
||
|
}
|
||
|
]
|
||
|
}
|