Robin Neatherway
Robin Neatherway
There is not a standard approach. In Emacs, when an F# file is loaded it look for a project or solution file nearby or in an enclosing directory. Applying msbuild...
It's not in yet: https://github.com/fsharp/FsAutoComplete/issues/23 I just haven't had time. If anyone does, I will do the review and release. Otherwise hopefully I will get to it soon.
What versions of Visual Studio, if any, does this machine have installed?
Currently FSAC depends on MSBuild v12, which comes with VS2013. The discussions at https://github.com/fsharp/FSharp.Compiler.Service/pull/337 and https://github.com/fsharp/FSharp.Compiler.Service/pull/338 describe some of the issues trying to work around that. I don't know the...
Please could you post the `.fsproj` file that you're having trouble with? In particular I am interested in all the parts that contribute to the `FSharp.Core` reference, but it is...
The reference to FSharp.Core is: ``` 4.3.1.0 True ``` Which should be fine. To give some context, I am the maintainer of the background process that this plugin uses. A...
I see, this is deeper than FsAutoComplete, the error comes from FSharp.Compiler.Service. I need to see the full communication between sublime text and FsAutoComplete. @guillermooo or @rojepp should know how...
Basically the version of Mono you are using has a different implementation of System.XML, which in this case leaves an empty section behind like ``. Only the nested tags are...
If you just want to build then use `./build.sh build`. This is only a problem with a failing test.
I haven't used it, but I am aware of https://github.com/mono/mono/blob/master/mcs/tools/xbuild/SolutionParser.cs. It looks complicated, and takes a dependency on MSBuild. Paket rolls its own minimal stuff: https://github.com/fsprojects/Paket/blob/master/src/Paket.Core/SolutionFile.fs. If we just want...