Skip to content

Commit 2c6a7ac

Browse files
committed
Update docs to provide a fix for missing Interactive dependencies
1 parent c78e693 commit 2c6a7ac

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

docs/index.fsx

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,24 @@ You can include the package via an inline package reference:
8585
You can use the same inline package reference as in script, but as an additional goodie,
8686
the interactive extensions for dotnet interactive have you covered for seamless chart rendering:
8787
88-
_Note: due to the currently fast development cycles of Dotnet Interactive, there might be increments in their versioning that renders the current version of Plotly.NET.Interactive incompatible (example [here](https://github.com/plotly/Plotly.NET/issues/67)). If the interactive extension does not work, please file an issue and we will try to get it running again as soon as possible._
89-
9088
```
9189
#r "nuget: Plotly.NET, <desired-version-here>"
9290
#r "nuget: Plotly.NET.Interactive,<desired-version-here>"
9391
```
9492
93+
_Note_:
94+
95+
due to the currently fast development cycles of Dotnet Interactive, there might be increments in their versioning that renders the current version of Plotly.NET.Interactive incompatible (example [here](https://github.com/plotly/Plotly.NET/issues/67)).
96+
97+
If the interactive extension does not work, please file an issue and we will try to get it running again as soon as possible.
98+
99+
A possible fix for this is the inclusion of Dotnet.Interactive preview package sources. To use these, add the following lines before referencning Plotly.NET.Interactive:
100+
101+
```fsharp
102+
#i "nuget:https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json"
103+
#i "nuget:https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json"
104+
```
105+
95106
# Overview
96107
97108
## Basics

0 commit comments

Comments
 (0)