Skip to content

Commit

Permalink
Merge branch 'develop' into dennisdyallo/bugfix/160-default-mgmtkey
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisDyallo authored Nov 18, 2024
2 parents 315a8e2 + 236c05d commit 3a65cf1
Showing 1 changed file with 145 additions and 0 deletions.
145 changes: 145 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build project: Yubico.Yubikey",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Yubico.YubiKey/src/Yubico.YubiKey.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "run tests: unit",
"command": "dotnet",
"type": "process",
"args": [
"test",
"${workspaceFolder}/Yubico.YubiKey/tests/unit/Yubico.YubiKey.UnitTests.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "test",
"isDefault": true
}
},
{
"type": "dotnet",
"task": "build",
"group": "build",
"problemMatcher": [],
"label": "dotnet: build"
},
{
"label": "run tests: integration (RequiresTouch)",
"command": "dotnet",
"type": "process",
"args": [
"test",
"${workspaceFolder}/Yubico.YubiKey/tests/integration/Yubico.YubiKey.IntegrationTests.csproj",
"--filter",
"Category=RequiresTouch",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": "test"
},
{
"label": "run tests: integration (Simple)",
"command": "dotnet",
"type": "process",
"args": [
"test",
"${workspaceFolder}/Yubico.YubiKey/tests/integration/Yubico.YubiKey.IntegrationTests.csproj",
"--filter",
"Category=Simple",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": "test"
},
{
"label": "run tests: integration (Elevated)",
"command": "dotnet",
"type": "process",
"args": [
"test",
"${workspaceFolder}/Yubico.YubiKey/tests/integration/Yubico.YubiKey.IntegrationTests.csproj",
"--filter",
"Category=Elevated",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": "test"
},
{
"label": "run tests: integration (RequiresBio)",
"command": "dotnet",
"type": "process",
"args": [
"test",
"${workspaceFolder}/Yubico.YubiKey/tests/integration/Yubico.YubiKey.IntegrationTests.csproj",
"--filter",
"Category=RequiresBio",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": "test"
},
{
"label": "run tests: integration (RequiresSetup)",
"command": "dotnet",
"type": "process",
"args": [
"test",
"${workspaceFolder}/Yubico.YubiKey/tests/integration/Yubico.YubiKey.IntegrationTests.csproj",
"--filter",
"Category=RequiresSetup",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": "test"
},
{
"label": "run tests: integration (RequiresStepDebug)",
"command": "dotnet",
"type": "process",
"args": [
"test",
"${workspaceFolder}/Yubico.YubiKey/tests/integration/Yubico.YubiKey.IntegrationTests.csproj",
"--filter",
"Category=RequiresStepDebug",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": "test"
},
{
"label": "run tests: integration (RequiresFips)",
"command": "dotnet",
"type": "process",
"args": [
"test",
"${workspaceFolder}/Yubico.YubiKey/tests/integration/Yubico.YubiKey.IntegrationTests.csproj",
"--filter",
"Category=RequiresFips",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": "test"
}
]
}

0 comments on commit 3a65cf1

Please sign in to comment.