dotnetresxutils/.vscode/tasks.json

41 lines
1.2 KiB
JSON
Raw Normal View History

2022-05-16 06:21:51 +00:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
2022-05-19 03:02:37 +00:00
"${workspaceFolder}/DotNetResxUtils/DotNetResxUtils.csproj",
2022-05-16 06:21:51 +00:00
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
2022-05-19 03:02:37 +00:00
"${workspaceFolder}/DotNetResxUtils/DotNetResxUtils.csproj",
2022-05-16 06:21:51 +00:00
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
2022-05-19 03:02:37 +00:00
"${workspaceFolder}/DotNetResxUtils/DotNetResxUtils.csproj"
2022-05-16 06:21:51 +00:00
],
"problemMatcher": "$msCompile"
}
]
}