Files
pdf-text-stripper/.vscode/tasks.json
2025-02-26 12:36:41 -07:00

28 lines
689 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "Build Self",
"command": "dotnet",
"type": "process",
"args": [
"build",
"--runtime",
"win-x64",
"--self-contained"
],
"problemMatcher": "$msCompile"
},
]
}