-
Notifications
You must be signed in to change notification settings - Fork 389
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to add framework reference? #861
Comments
This isn't currently supported but you should be able to reference the package directly using |
See also dotnet/fsharp#8688 |
Also possibly related: #890 |
This is starting to affect my current work. Mostly I need to perform visualizations on data, e.g. MSAGL graph viewer that requires Windows Forms. Priority will be appreciated. Faisal |
Any updates around framework reference, isn't this useful also for aspnetcore apps? cheers |
It seems like this does work now, but it's not documented here. Example: create a brand new notebook, with a C# block with the following content only: using System.Net.Http.Json; When you run it, it will return:
If you change the code to: #r "System.Net.Http.Json.dll"
using System.Net.Http.Json; It will work. This should be improved in the docs for |
how do you add a framework reference, similar to the following
.csproj
line:?
The following code block
Gives the following error:
With
.csproj
you don't need an assembly reference, the aboveFrameworkReference
element includes the SignalR dlls.The text was updated successfully, but these errors were encountered: