/
spruttechnology
/
cam-api-examples
Обзор
Документация
Войти
/
spruttechnology
/
cam-api-examples
Код
Запросы
3
Задачи
Пакеты
0
Релизы
1
Аналитика
v19/develop
ProjectMachine/ExtensionUtilityProjectMachineInfoNet/.vscode/tasks.json
93 строки
3 KB
cepera
synch
23 окт 2024, 19:07
23 окт 2024, 19:07
abb5b1d
Код
Авторство
О чём код?
{ "version": "2.0.0", "tasks": [ { "label": "build", "command": ".stbuild/build.cmd --Target Compile --Variant Debug", "type": "shell", "args": [ ], "problemMatcher": "$msCompile", "group": { "kind": "build", "isDefault": true } }, { "label": "pack", "command": ".stbuild/build.cmd --Target Pack --Variant Release", "type": "shell", "args": [ ], "problemMatcher": "$msCompile", "group": { "kind": "build", "isDefault": false } }, { "label": "clean", "command": ".stbuild/build.cmd --Target Clean", "type": "shell", "args": [ ], "problemMatcher": "$msCompile", "group": { "kind": "build", "isDefault": false } }, { "label": "build-op-seperately", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/project/main/ExtensionUtilityProjectMachineInfoNet.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign" ], "problemMatcher": "$msCompile", "group": { "kind": "build", "isDefault": false } }, { "label": "build-stbuild", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/.stbuild/build/stbuild.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign" ], "problemMatcher": "$msCompile" }, { "label": "publish", "command": "dotnet", "type": "process", "args": [ "publish", "${workspaceFolder}/.stbuild/build/stbuild.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign" ], "problemMatcher": "$msCompile" }, { "label": "watch", "command": "dotnet", "type": "process", "args": [ "watch", "run", "--project", "${workspaceFolder}/.stbuild/build/stbuild.csproj" ], "problemMatcher": "$msCompile" } ] }