{ "version": "2.0.0", "tasks": [ { "label": "test-net10", "command": "dotnet", "type": "process", "args": [ "test", "${workspaceFolder}/lib/QuanTAlib.Tests.csproj", "--framework", "net10.0" ], "problemMatcher": "$msCompile", "group": { "kind": "test", "isDefault": true }, "presentation": { "reveal": "always", "panel": "new" } }, { "label": "test-all-frameworks", "command": "dotnet", "type": "process", "args": [ "test", "${workspaceFolder}/lib/QuanTAlib.Tests.csproj" ], "problemMatcher": "$msCompile", "group": "test", "presentation": { "reveal": "always", "panel": "new" } }, { "label": "build", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/QuanTAlib.sln" ], "problemMatcher": "$msCompile", "group": { "kind": "build", "isDefault": true } } ] }