You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran into this issue today when trying to set up a GitHub Actions workflow to build my project. The default 8.x version that gets installed by the setup-dotnet action is 8.0.404. When building using this version, I was running into the following error:
Error: /home/runner/work/escalier-next/escalier-next/src/Escalier.Playground/Main.fs(149,25):
error FS0039: The value, namespace, type or module 'CssScopes' is not defined.
[/home/runner/work/escalier-next/escalier-next/src/Escalier.Playground/Escalier.Playground.fsproj]
Switching to 8.0.100 fixed the issue. If anyone else runs into this issue with GitHub Actions, I had to set this in global.json like so:
{
"sdk": {
"version": "8.0.100"
}
}
since the dotnet-version option for the setup-dotnet appears to do nothing.
The text was updated successfully, but these errors were encountered:
This should be fixed in v0.24. I haven't made the announcement yet (need to finish updating the project template), but it is already published on nuget.org. You can try it out, make sure to update Bolero.Build in particular for this issue
I ran into this issue today when trying to set up a GitHub Actions workflow to build my project. The default 8.x version that gets installed by the setup-dotnet action is 8.0.404. When building using this version, I was running into the following error:
Switching to 8.0.100 fixed the issue. If anyone else runs into this issue with GitHub Actions, I had to set this in global.json like so:
since the
dotnet-version
option for thesetup-dotnet
appears to do nothing.The text was updated successfully, but these errors were encountered: