We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edec70a commit 861d3b7Copy full SHA for 861d3b7
.vscode/tasks.json
@@ -14,7 +14,7 @@
14
"problemMatcher": "$msCompile"
15
},
16
{
17
- "label": "run tests: unit",
+ "label": "run unit tests: Yubico.YubiKey",
18
"command": "dotnet",
19
"type": "process",
20
"args": [
@@ -29,6 +29,22 @@
29
"isDefault": true
30
}
31
32
+ {
33
+ "label": "run unit tests: Yubico.Core",
34
+ "command": "dotnet",
35
+ "type": "process",
36
+ "args": [
37
+ "test",
38
+ "${workspaceFolder}/Yubico.Core/tests/Yubico.Core.UnitTests.csproj",
39
+ "/property:GenerateFullPaths=true",
40
+ "/consoleloggerparameters:NoSummary"
41
+ ],
42
+ "problemMatcher": "$msCompile",
43
+ "group": {
44
+ "kind": "test",
45
+ "isDefault": true
46
+ }
47
+ },
48
49
"type": "dotnet",
50
"task": "build",
0 commit comments