Shmew/Feliz.MaterialUI

Loosen paket dependencies for FSharp.Core

Closed this issue · 2 comments

Shmew commented

The library generates a dependency restriction of FSharp.Core (>= 4.7.1 && < 4.8.0).

Could you adjust it like this:

nuget FSharp.Core ~> 4.7 lowest_matching: true

so that it becomes: FSharp.Core (>= 4.7.0 && < 5.0.0)

or ~> 4.7.0 lowest_matching: true if you want it to be FSharp.Core (>= 4.7.0 && < 4.8.0)?

Good catch! I tried your proposed change and did a dotnet paket install followed by dotnet fake build -t CiBuild, but the .nupkg that is produced still has the same restriction. Am I doing something wrong? Could you send a PR, perhaps?

Oh wait, I have to do a paket update, not install. Will fix.