Files
Unimarc/unimarc/unimarc/.vscode/tasks.json

51 lines
1.4 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "\"F:\\(VHD) Program Files\\Microsoft Visual Studio\\2022\\MSBuild\\Current\\Bin\\msbuild.exe\"",
"type": "process",
"args": [
"UniMarc.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"group": "build",
"presentation": {
"reveal": "always"
},
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "msbuild",
"type": "process",
"args": [
"UniMarc.csproj",
"/p:Configuration=Release",
"/p:PublishProfile=FolderProfile"
],
"group": "build",
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "msbuild",
"type": "process",
"args": [
"UniMarc.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"group": "build",
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$msCompile"
}
]
}