Ionide doesn't see library reference on .NET Core 2.0 solution with two projects.
mkdir netcore2-vscode
cd .\netcore2-vscode\
dotnet new sln
dotnet new classlib -lang f# -o .\lib\
dotnet new console -lang f# -o .\app\
dotnet add .\app\app.fsproj reference .\lib\lib.fsproj
dotnet sln add .\app\app.fsproj
dotnet sln add .\lib\lib.fsproj
dotnet restore
.\app\Program.fsopen System
open lib
[<EntryPoint>]
let main argv =
Say.hello "World"
0 // return an integer exit code
dotnet build
dotnet run --project .\app\app.fsproj
Everything is fine. No errors in VSCode.
Errors in VSCode:

Sorry for translated version of VSCode.
Please find attached repro: netcore2-vscode.zip
Thanks!
CC: @enricosada
Issue is netstandard2.0 intellisense doesnt work atm, netcoreapp2.0 works.
We need to upgrade FSC used by FSAC. ref https://github.com/fsharp/FsAutoComplete/issues/180
Closing this one since it's tracked on FSAC repo.
OK, thanks a lot!
I'm getting this issue on netcoreapp2.1 had to downgrade to netcoreapp2.0.
I had this issue just now after changing one project from netstandard to netcoreapp.
Doing a git clean -xdf and a full rebuild seems to have sorted it.
Most helpful comment
I'm getting this issue on
netcoreapp2.1had to downgrade tonetcoreapp2.0.