Files
oi-metrology/Tests/.vscode/tasks.json
phares@iscn5cg20977xq a427c5648a - Include root in valid directories
- AppSetting bug fix

- Updated testes with base test class and editor configuration changes

- Created new server and wafer counter tasks json files and pipelines to match
2025-07-29 16:56:09 -07:00

98 lines
2.5 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"command": "dotnet",
"type": "process",
"args": [
"build"
],
"problemMatcher": "$msCompile"
},
{
"label": "Test Debug",
"command": "dotnet",
"type": "process",
"args": [
"test",
"--settings:test.runsettings"
],
"problemMatcher": "$msCompile"
},
{
"label": "Test Debug with Settings",
"command": "dotnet",
"type": "process",
"args": [
"test",
"--settings:Settings.xml"
],
"problemMatcher": "$msCompile"
},
{
"label": "Test Release",
"command": "dotnet",
"type": "process",
"args": [
"test",
"-c",
"Release"
],
"problemMatcher": "$msCompile"
},
{
"label": "Test Release with Settings",
"command": "dotnet",
"type": "process",
"args": [
"test",
"-c",
"Release",
"--settings:Settings.xml"
],
"problemMatcher": "$msCompile"
},
{
"label": "Format",
"command": "dotnet",
"type": "process",
"args": [
"format",
"--report",
".vscode",
"--verbosity",
"detailed",
"--severity",
"warn"
],
"problemMatcher": "$msCompile"
},
{
"label": "Format Whitespace",
"command": "dotnet",
"type": "process",
"args": [
"format",
"whitespace"
],
"problemMatcher": "$msCompile"
},
{
"label": "Publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"--configuration",
"Release",
"--runtime",
"win-x64",
"--self-contained",
"-o",
"D:/web-sites/OI-Metrology/hh-3498d1da-_______-OI-Metrology-Release/Server"
],
"problemMatcher": "$msCompile"
}
]
}