Skip to content
This repository has been archived by the owner on Jan 8, 2019. It is now read-only.

v1.0.3

Compare
Choose a tag to compare
@enricosada enricosada released this 26 Apr 15:03
· 13 commits to master since this release

Now the fsproj works with all three the msbuild host runtimes (.net core, .net framework, mono >= 5.0)

Example:

  • .net core dotnet restore, dotnet build (as note, dotnet build = dotnet msbuild /t:Build)
  • .net fw msbuild.exe /t:Restore, msbuild.exe /t:Build
  • mono msbuild /t:Restore, msbuild /t:Build

Also fsc used will depends on msbuild host runtimes, so:

  • .net core fsc.dll (netcoreapp1.0)
  • .net fw fsc.exe (net40)
  • mono mono fsc.exe (net40)

NOTE fsc used is inside FSharp.Compiler.Tools nuget package

bump to FSharp.Compiler.Tools 4.1.15

NOTE msbuild.exe (VS2017) need a workaround, more info in dotnet/fsharp#2928

NOTE mono 5.0 Alpha 3 (5.0.0.61) need a workaround, more info in mono bug #55626