- 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
This commit is contained in:
2025-07-29 16:56:09 -07:00
parent 6f52566fc2
commit a427c5648a
49 changed files with 1680 additions and 822 deletions

View File

@ -2,43 +2,57 @@
"version": "2.0.0",
"tasks": [
{
"label": "build",
"label": "Build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/OI.Metrology.Tests.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
"build"
],
"problemMatcher": "$msCompile"
},
{
"label": "testDebug",
"label": "Test Debug",
"command": "dotnet",
"type": "process",
"args": [
"test",
"${workspaceFolder}/OI.Metrology.Tests.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
"--settings:test.runsettings"
],
"problemMatcher": "$msCompile"
},
{
"label": "testRelease",
"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",
"${workspaceFolder}/OI.Metrology.Tests.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"-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",
@ -55,7 +69,7 @@
"problemMatcher": "$msCompile"
},
{
"label": "Format-Whitespace",
"label": "Format Whitespace",
"command": "dotnet",
"type": "process",
"args": [
@ -65,14 +79,11 @@
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"label": "Publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/../Server/OI.Metrology.Server.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"--configuration",
"Release",
"--runtime",