From 906771ce6dd926d145ad35f9cedca0f97a993ac0 Mon Sep 17 00:00:00 2001 From: WhiteBlackGoose Date: Sun, 1 Aug 2021 18:57:30 +0300 Subject: [PATCH] Reproduction script added --- src/Plotly.NET.Interactive/Plotly.NET.Interactive.fsproj | 3 ++- src/Plotly.NET.Interactive/Repack.ps1 | 9 +++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 src/Plotly.NET.Interactive/Repack.ps1 diff --git a/src/Plotly.NET.Interactive/Plotly.NET.Interactive.fsproj b/src/Plotly.NET.Interactive/Plotly.NET.Interactive.fsproj index a4a735cd0..55ac9a201 100644 --- a/src/Plotly.NET.Interactive/Plotly.NET.Interactive.fsproj +++ b/src/Plotly.NET.Interactive/Plotly.NET.Interactive.fsproj @@ -32,8 +32,9 @@ + - + diff --git a/src/Plotly.NET.Interactive/Repack.ps1 b/src/Plotly.NET.Interactive/Repack.ps1 new file mode 100644 index 000000000..319a30c22 --- /dev/null +++ b/src/Plotly.NET.Interactive/Repack.ps1 @@ -0,0 +1,9 @@ +# clean up the previously-cached NuGet packages +Remove-Item -Recurse ~\.nuget\packages\Plotly.NET.Interactive* -Force +Remove-Item -Recurse ~\.nuget\packages\Plotly.NET* -Force + +# build and pack Plotly.NET.Interactive +dotnet restore +dotnet clean +dotnet build -c Release +dotnet pack -c Release \ No newline at end of file