|
4 | 4 | <TargetFramework>net6.0</TargetFramework>
|
5 | 5 | <ImplicitUsings>enable</ImplicitUsings>
|
6 | 6 | <Nullable>enable</Nullable>
|
| 7 | + <AssemblyName>Plotly.NET.CSharp</AssemblyName> |
| 8 | + <Name>Plotly.NET.CSharp</Name> |
| 9 | + <OutputType>Library</OutputType> |
| 10 | + <!-- Optional: Declare that the Repository URL can be published to NuSpec --> |
| 11 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 12 | + <!-- Optional: Embed source files that are not tracked by the source control manager to the PDB --> |
| 13 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 14 | + <!-- Optional: Include PDB in the built .nupkg --> |
| 15 | + <IncludeSymbols>true</IncludeSymbols> |
| 16 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
7 | 17 | <SignAssembly>true</SignAssembly>
|
8 | 18 | <AssemblyOriginatorKeyFile>../../key.snk</AssemblyOriginatorKeyFile>
|
| 19 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 20 | + <SignAssembly>true</SignAssembly> |
| 21 | + <AssemblyOriginatorKeyFile>../../key.snk</AssemblyOriginatorKeyFile> |
| 22 | + </PropertyGroup> |
| 23 | + |
| 24 | + <PropertyGroup> |
| 25 | + <Authors>Kevin Schneider, F# open source contributors</Authors> |
| 26 | + <Description>Native C# bindings for Plotly.NET 📈🚀.</Description> |
| 27 | + <Summary>Native C# bindings for Plotly.NET 📈🚀.</Summary> |
| 28 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 29 | + <PackageProjectUrl>https://plotly.net</PackageProjectUrl> |
| 30 | + <PackageIcon>logo.png</PackageIcon> |
| 31 | + <PackageTags>visualization charting plotly fsharp csharp</PackageTags> |
| 32 | + <RepositoryUrl>https://github.com/plotly/Plotly.NET/</RepositoryUrl> |
| 33 | + <RepositoryType>git</RepositoryType> |
| 34 | + <FsDocsLicenseLink>https://github.com/plotly/Plotly.NET/blob/dev/LICENSE</FsDocsLicenseLink> |
| 35 | + <FsDocsReleaseNotesLink>https://github.com/plotly/Plotly.NET/blob/dev/RELEASE_NOTES.md</FsDocsReleaseNotesLink> |
9 | 36 | </PropertyGroup>
|
10 | 37 |
|
11 | 38 | <ItemGroup>
|
| 39 | + <None Include="..\..\docs\img\logo.png" Pack="true" PackagePath="\" /> |
12 | 40 | <ProjectReference Include="..\Plotly.NET\Plotly.NET.fsproj" />
|
13 | 41 | </ItemGroup>
|
14 | 42 |
|
|
0 commit comments