You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need a way for project references to work (local development is much easier than using nuget references in a monorepo like this), but dotnet pack setting another dependency version than just >=version.
The exact error is Plotly.NET.CSharp not working in a blank notebook, due to the dependency on Plotly.NET being >= 3.0.0, but not working with 4.0.0 due to breaking changes. The real version range should be >= 3.0.0 && <4.0.0 :
Error:
Fix:
There is currently no built-in way to do this, but NuGet/Home#5556 contains several workarounds.
The text was updated successfully, but these errors were encountered:
We need a way for project references to work (local development is much easier than using nuget references in a monorepo like this), but
dotnet pack
setting another dependency version than just>=version
.The exact error is Plotly.NET.CSharp not working in a blank notebook, due to the dependency on Plotly.NET being >= 3.0.0, but not working with 4.0.0 due to breaking changes. The real version range should be >= 3.0.0 && <4.0.0 :
Error:
Fix:
There is currently no built-in way to do this, but NuGet/Home#5556 contains several workarounds.
The text was updated successfully, but these errors were encountered: