Skip to content

Commit

Permalink
Workaround dotnet tool restore bug in .NET 8.0.100-rc.2.23502.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
lauxjpn committed Oct 14, 2023
1 parent 408c147 commit d7890b0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,14 @@ jobs:
- name: Install EF Core Tools
shell: pwsh
run: |
dotnet tool restore
# dotnet tool restore is broken in .NET 8.0.0-rc.2
# https://github.com/dotnet/sdk/issues/35989
# https://github.com/dotnet/sdk/pull/35884
#
# dotnet tool restore
dotnet tool uninstall dotnet-ef
dotnet tool install dotnet-ef --prerelease --verbosity diag
dotnet ef --version
- name: Restore dependencies
shell: pwsh
Expand Down

0 comments on commit d7890b0

Please sign in to comment.