{ "version": "2.0.0", "tasks": [ { "label": "build", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/OI.Metrology.Tests.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "problemMatcher": "$msCompile" }, { "label": "testDebug", "command": "dotnet", "type": "process", "args": [ "test", "${workspaceFolder}/OI.Metrology.Tests.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "problemMatcher": "$msCompile" }, { "label": "testRelease", "command": "dotnet", "type": "process", "args": [ "test", "${workspaceFolder}/OI.Metrology.Tests.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary", "-c", "Release" ], "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", "${workspaceFolder}/../Server/OI.Metrology.Server.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary", "--configuration", "Release", "--runtime", "win-x64", "--self-contained", "-o", "D:/web-sites/OI-Metrology/hh-3498d1da-_______-OI-Metrology-Release/Server" ], "problemMatcher": "$msCompile" } ] }