{ "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" } ] }