Open
Description
Description
I used Paket and Fake out-of-box, via project scaffold.
I added a dependency to Owin (v.1.0.0) and Paket generated it to my NuGet package as follows:
Owin (>= 1.0.0-prerelease && <= 1.0.0)
And everything worked fine and everyone was happy. Until one day, the Owin-team unlisted the prerelease-version of the package from NuGet. Now my users started to get build errors.
This is probably a problem of NuGet-protocol in general, but as we know, they are not an open-source project accepting pull-requests. * Meanwhile Paket is the default .NET-solution to tackle NuGet-problems.
I use the following configuration:
paket.template:
dependencies
Owin 1.0.0 ~> LOCKEDVERSION
paket.lock:
Owin (1.0)