Skip to content

Commit 1642c89

Browse files
committed
Fix interactive packaging location
1 parent ab52433 commit 1642c89

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Plotly.NET.Interactive/Plotly.NET.Interactive.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<ItemGroup>
3333
<None Include="Repack.ps1" />
3434
<None Include="..\..\docs\img\logo.png" Pack="true" PackagePath="\" />
35-
<None Include="..\Plotly.NET.Interactive\bin\Release\$(TargetFramework)\Plotly.NET.Interactive.dll" Pack="true" PackagePath="interactive-extensions/dotnet" />
35+
<None Include="..\..\bin\Plotly.NET.Interactive\net5.0\Plotly.NET.Interactive.dll" Pack="true" PackagePath="interactive-extensions/dotnet" />
3636
<Compile Include="AssemblyInfo.fs" />
3737
<Compile Include="Extension.fs" />
3838
</ItemGroup>

src/Plotly.NET.Interactive/Repack.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Remove-Item -Recurse ~\.nuget\packages\Plotly.NET.Interactive* -Force
33
Remove-Item -Recurse ~\.nuget\packages\Plotly.NET* -Force
44

55
# build and pack Plotly.NET.Interactive
6-
dotnet restore
7-
dotnet clean
8-
dotnet build -c Release
9-
dotnet pack -c Release
6+
cd ../../
7+
dotnet tool restore
8+
dotnet fake build
9+
dotnet pack -c Release -p:PackageVersion=0.0.0-dev -o "./pkg"

0 commit comments

Comments
 (0)