Skip to content

Commit bc15f67

Browse files
committedJun 15, 2022
Use package references of the base lib for all extension projects
1 parent 2338652 commit bc15f67

File tree

4 files changed

+10
-15
lines changed

4 files changed

+10
-15
lines changed
 

‎src/Plotly.NET.CSharp/Plotly.NET.CSharp.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</PropertyGroup>
2323

2424
<PropertyGroup>
25-
<Authors>Kevin Schneider, F# open source contributors</Authors>
25+
<Authors>Kevin Schneider, open source contributors</Authors>
2626
<Description>Native C# bindings for Plotly.NET 📈🚀.</Description>
2727
<Summary>Native C# bindings for Plotly.NET 📈🚀.</Summary>
2828
<PackageLicenseExpression>MIT</PackageLicenseExpression>
@@ -37,7 +37,7 @@
3737

3838
<ItemGroup>
3939
<None Include="..\..\docs\img\logo.png" Pack="true" PackagePath="\" />
40-
<ProjectReference Include="..\Plotly.NET\Plotly.NET.fsproj" />
40+
<PackageReference Include="Plotly.NET" Version="3.*" />
4141
</ItemGroup>
4242

4343
</Project>

‎src/Plotly.NET.ImageExport/Plotly.NET.ImageExport.fsproj

+1-6
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,8 @@
3333
<None Include="Playground.fsx" />
3434
</ItemGroup>
3535

36-
<ItemGroup />
37-
38-
<ItemGroup>
39-
<ProjectReference Include="..\Plotly.NET\Plotly.NET.fsproj" />
40-
</ItemGroup>
41-
4236
<ItemGroup>
37+
<PackageReference Include="Plotly.NET" Version="3.*" />
4338
<PackageReference Include="DynamicObj" Version="2.0.0" />
4439
<PackageReference Include="PuppeteerSharp" Version="6.0.0" />
4540
</ItemGroup>

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

+3-7
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@
3030
<FsDocsLicenseLink>https://github.com/plotly/Plotly.NET/blob/dev/LICENSE</FsDocsLicenseLink>
3131
<FsDocsReleaseNotesLink>https://github.com/plotly/Plotly.NET/blob/dev/RELEASE_NOTES.md</FsDocsReleaseNotesLink>
3232
</PropertyGroup>
33-
34-
<ItemGroup>
35-
<ProjectReference Include="..\Plotly.NET\Plotly.NET.fsproj" />
36-
</ItemGroup>
3733

3834
<ItemGroup>
3935
<Compile Remove="bin\**" />
@@ -52,10 +48,10 @@
5248
<None Include="$(OutputPath)/Plotly.NET.Interactive.dll" Pack="true" PackagePath="interactive-extensions/dotnet" />
5349
</ItemGroup>
5450

55-
5651
<ItemGroup>
57-
<PackageReference Include="Microsoft.DotNet.Interactive" Version="1.0.0-beta.22175.2" />
58-
<PackageReference Include="Microsoft.DotNet.Interactive.Formatting" Version="1.0.0-beta.22175.2" />
52+
<PackageReference Include="Plotly.NET" Version="3.*" />
53+
<PackageReference Include="Microsoft.DotNet.Interactive" Version="1.0.0-beta.22314.1" />
54+
<PackageReference Include="Microsoft.DotNet.Interactive.Formatting" Version="1.0.0-beta.22314.1" />
5955
</ItemGroup>
6056

6157
</Project>

‎src/Plotly.NET.Interactive/RELEASE_NOTES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 3.0.1 - June 15 2020
2+
3+
Update .NET interactive references
4+
15
### 3.0.0 - June 15 2020
26

37
This release adopts strong assembly naming.

0 commit comments

Comments
 (0)
Failed to load comments.