I've found solution to get C# / F# on travis: How do I use Travis-CI with C# or F#
except I get 3.2.4 version
I checked archive and found fsharpc there but can't find Microsoft.FSharp.Targets
or something alike...
So... my Visual Studio F# project contains:
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v12.0\FSharp\Microsoft.FSharp.Targets" />
And sure it will not work there... I was trying several ways including downloading Microsoft.FSharp.Targets
from F# opensource github but then it was trying to use fsc instead fsharpc, that was a bit strange for me...
So in nutshell how should I make my fsproj
file to be look like to make it work on MonoFramework
provided by Xamarin
?