/
Edwar
/
cam-api-examples
Обзор
Документация
Войти
/
Edwar
/
cam-api-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
UI/ExtensionUtilityDialogWindowNet/.vscode/tasks.json
93 строки
3 KB
bond
New example for demonstrating CAMAPI.UIDialogs
22 окт 2024, 16:43
22 окт 2024, 16:43
4b3c1d8
Код
Авторство
О чём код?
{ "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/ExtensionUtilityDialogWindowNet.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" } ] }