Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
joegoldman2 committed Oct 4, 2024
1 parent d119d58 commit 3e74b9f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,23 +81,23 @@ jobs:
displayName: 'Install .NET 8.0 SDK'
inputs:
packageType: 'sdk'
version: '8.0.x'
version: '8.0.x'
- task: DotNetCoreCLI@2
displayName: 'dotnet restore'
inputs:
command: restore
projects: 'Test/Test.csproj'
projects: 'Tests/Fido2.Tests/Fido2.Tests.csproj'
- task: DotNetCoreCLI@2
displayName: 'dotnet build $(buildConfiguration)'
inputs:
command: build
arguments: '--configuration $(buildConfiguration) --no-restore --nologo "-p:Version=$(Build.BuildNumber)-development"'
projects: 'Test/Test.csproj'
projects: 'Tests/Fido2.Tests/Fido2.Tests.csproj'
- task: DotNetCoreCLI@2
displayName: Run unit tests
inputs:
command: test
projects: 'Test/Test.csproj'
projects: 'Tests/Fido2.Tests/Fido2.Tests.csproj'
arguments: '--configuration $(buildConfiguration) --no-restore --no-build --nologo --collect:"XPlat Code Coverage"'
- task: Palmmedia.reportgenerator.reportgenerator-build-release-task.reportgenerator@4
displayName: ReportGenerator
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
displayName: 'dotnet restore'
inputs:
command: restore
projects: 'Test/Test.csproj'
projects: 'Tests/Fido2.Tests/Fido2.Tests.csproj'
- task: DotNetCoreCLI@2
displayName: 'dotnet format'
inputs:
Expand All @@ -156,10 +156,10 @@ jobs:
inputs:
command: build
arguments: '--configuration $(buildConfiguration) --no-restore --nologo "-p:Version=$(Build.BuildNumber)-development"'
projects: 'Test/Test.csproj'
projects: 'Tests/Fido2.Tests/Fido2.Tests.csproj'
- task: DotNetCoreCLI@2
displayName: Run unit tests
inputs:
command: test
projects: 'Test/Test.csproj'
arguments: '--configuration $(buildConfiguration) --no-restore --no-build --nologo'
projects: 'Tests/Fido2.Tests/Fido2.Tests.csproj'
arguments: '--configuration $(buildConfiguration) --no-restore --no-build --nologo'

0 comments on commit 3e74b9f

Please sign in to comment.