how do I best reference a system assembly, that has no NuGet package, in VS Code with Paket in an F# project or script?
Example: System.Data.Linq.dll
.
One way is to hard reference the file, e.g. like this:
#r @"C:/Windows/Microsoft.NET/Framework/v4.0.30319/System.Data.Linq.dll"
But is there a better / portable solution? How does this work with Mono or .NET Core?