fsharp-language-server
fsharp-language-server copied to clipboard
OutputPath / AssemblyName setting in .fsproj ignored
I was trying to use the fsharp language server in combination with a modified SQLProviders project, but instead of looking in the SQLProviders/bin/...
folder for the binary, it was looking in the SQLProviders/src/SQLProvider.Standard/bin/...
folder which does not exist.
Steps to reproduce:
-
git clone https://github.com/fsprojects/SQLProvider.git
- create a new F# project and add the reference:
<ItemGroup>
<ProjectReference Include="..\FSharp\fsprojects\SQLProvider\src\SQLProvider.Standard\SQLProvider.Standard.fsproj" />
</ItemGroup>
- Reference
FSharp.Data.Sql
in the file. - It seems to also look for
SQLProvider.Standard.dll
rather thanFSharp.Data.SqlProvider.dll
Tested this in Spacemacs on Ubuntu.
See #58