Skip to content

Commit 4f3eac7

Browse files
Another fix to the packing workflow (#98)
* Another fix to the packing workflow * Item group reverted * Reverting and minor changes Repack: getting back to the caller folder The path in the fsproj reverted Jupyter checkpoints added to git ignore
1 parent 137c3a2 commit 4f3eac7

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,3 +191,6 @@ temp/gh-pages
191191
/src/Plotly.NET.ImageExport/testrenders
192192
/src/Plotly.NET.Interactive/.local-chromium/
193193
/docs/.local-chromium/
194+
195+
# Jupyter notebooks checkpoints
196+
**/.ipynb_checkpoints/**
Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
# clean up the previously-cached NuGet packages
2-
Remove-Item -Recurse ~\.nuget\packages\Plotly.NET.Interactive* -Force
3-
Remove-Item -Recurse ~\.nuget\packages\Plotly.NET* -Force
1+
# Clean up the previously-cached NuGet packages.
2+
# Lower-case is intentional (that's how nuget stores those packages).
3+
Remove-Item -Recurse ~\.nuget\packages\plotly.net.interactive* -Force
4+
Remove-Item -Recurse ~\.nuget\packages\plotly.net* -Force
45

56
# build and pack Plotly.NET.Interactive
67
cd ../../
78
dotnet tool restore
89
dotnet fake build
9-
dotnet pack -c Release -p:PackageVersion=0.0.0-dev -o "./pkg"
10+
dotnet pack -c Release -p:PackageVersion=0.0.0-dev -o "./pkg"
11+
cd src/Plotly.NET.Interactive

0 commit comments

Comments
 (0)