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
You can include the package via an inline package reference:
63
63
64
64
```
65
-
#r "nuget: Plotly.NET, 2.0.0-beta1"
65
+
#r "nuget: Plotly.NET, <version>"
66
66
```
67
67
68
68
### For dotnet interactive notebooks
@@ -71,8 +71,8 @@ You can use the same inline package reference as in script, but as an additional
71
71
the interactive extensions for dotnet interactive have you covered for seamless chart rendering:
72
72
73
73
```
74
-
#r "nuget: Plotly.NET, 2.0.0-beta1"
75
-
#r "nuget: Plotly.NET.Interactive, 2.0.0-beta1"
74
+
#r "nuget: Plotly.NET, <version>"
75
+
#r "nuget: Plotly.NET.Interactive, <version>"
76
76
```
77
77
78
78
# Documentation
@@ -89,26 +89,36 @@ The documentation for this library is automatically generated (using FSharp.Form
89
89
90
90
# Development
91
91
92
+
_Note:_ The `release` and `prerelease` build targets assume that there is a `NUGET_KEY` environment variable that contains a valid Nuget.org API key.
93
+
92
94
### build
93
95
94
96
Check the [build.fsx file](https://github.com/plotly/Plotly.NET/blob/dev/build.fsx) to take a look at the build targets. Here are some examples:
95
97
96
98
```shell
97
99
# Windows
98
100
99
-
# Build, test, pack nuget, build docs
100
-
./build.cmd -t all
101
-
102
101
# Build only
103
102
./build.cmd
104
103
105
-
# Linux/mac
104
+
# Full release buildchain: build, test, pack, build the docs, push a git tag, publsih thze nuget package, release the docs
105
+
./build.cmd -t release
106
+
107
+
# The same for prerelease versions:
108
+
./build.cmd -t prerelease
106
109
107
-
# Build, test, pack nuget, build docs
108
-
./build.sh -t all
110
+
111
+
# Linux/mac
109
112
110
113
# Build only
111
-
./build.sh
114
+
build.sh
115
+
116
+
# Full release buildchain: build, test, pack, build the docs, push a git tag, publsih thze nuget package, release the docs
0 commit comments