Skip to content

Commit

Permalink
Fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
coenm committed Jan 22, 2024
1 parent f143760 commit 802655c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .azuredevops/Pipelines/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,13 @@ stages:
displayName: "Use dotnet sdk 6.0.x"
inputs:
version: 6.0.x
includePreviewVersions: true
includePreviewVersions: false

- task: UseDotNet@2
displayName: "Use dotnet sdk 8.0.x"
inputs:
version: 8.0.x
includePreviewVersions: false

- script: dotnet --info
displayName: Show dotnet SDK info
Expand Down Expand Up @@ -144,7 +150,7 @@ stages:
PathtoPublish: "$(Build.ArtifactStagingDirectory)"
ArtifactName: packages

- task: NuGetAuthenticate@0
- task: NuGetAuthenticate@1
displayName: Nuget authenticate

- task: DotNetCoreCLI@2
Expand Down
8 changes: 7 additions & 1 deletion .azuredevops/Pipelines/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,13 @@ stages:
displayName: "Use dotnet sdk 6.0.x"
inputs:
version: 6.0.x
includePreviewVersions: true
includePreviewVersions: false

- task: UseDotNet@2
displayName: "Use dotnet sdk 8.0.x"
inputs:
version: 8.0.x
includePreviewVersions: false

- script: dotnet --info
displayName: Show dotnet SDK info
Expand Down
1 change: 0 additions & 1 deletion src/EasyTestFile.Xunit/EasyTestFile.Xunit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Meziantou.Xunit.ParallelTestFramework" />
<PackageReference Include="xunit.assert" />
<PackageReference Include="xunit.abstractions" />
<PackageReference Include="xunit.extensibility.execution" />
Expand Down

0 comments on commit 802655c

Please sign in to comment.