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
The use-case in Paket was "fixed" by just recompiling the affected binary against netcoreapp2.0.
But I would guess that this requirement (2.x Sdk + 1.x Runtime) will be common.
Are there any reasons against either moving Paket to Fake.5, or backporting this stuff to Fake.legacy? If backported, probably with a different method name...
@0x53A no real reason, just something historical I added this in the FAKE 5 branch before someone wrote this again in the master branch :/. You can use it directly via paket-files or the nuget package
For fsprojects/Paket#2664 I need the 2.x Sdk and the 1.x Runtime.
The issue is that
DotNetCli.InstallDotNetSDK
cleans up before it installs anything - so if I first install 1.x then 2.x, 1.x will be deleted.Instead it should (maybe only if configured, so it doesn't waste too much space) merge the two installations.
For comparison, you can take a look at the folder structure created by the MS installers:
C:\Program Files\dotnet
and so on.
There is one dotnet.exe in the root (probably the latest?), but many dirs in parallel.
The text was updated successfully, but these errors were encountered: