Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -191,3 +191,6 @@ temp/gh-pages
/src/Plotly.NET.ImageExport/testrenders
/src/Plotly.NET.Interactive/.local-chromium/
/docs/.local-chromium/

# Jupyter notebooks checkpoints
**/.ipynb_checkpoints/**
10 changes: 6 additions & 4 deletions src/Plotly.NET.Interactive/Repack.ps1
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# clean up the previously-cached NuGet packages
Remove-Item -Recurse ~\.nuget\packages\Plotly.NET.Interactive* -Force
Remove-Item -Recurse ~\.nuget\packages\Plotly.NET* -Force
# Clean up the previously-cached NuGet packages.
# Lower-case is intentional (that's how nuget stores those packages).
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh btw, that's a fix of my own mistake. It does not clean well because the packages are stored by nuget in lower-case, which makes a different for pwsh, apparently

Remove-Item -Recurse ~\.nuget\packages\plotly.net.interactive* -Force
Remove-Item -Recurse ~\.nuget\packages\plotly.net* -Force

# build and pack Plotly.NET.Interactive
cd ../../
dotnet tool restore
dotnet fake build
dotnet pack -c Release -p:PackageVersion=0.0.0-dev -o "./pkg"
dotnet pack -c Release -p:PackageVersion=0.0.0-dev -o "./pkg"
cd src/Plotly.NET.Interactive