-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathPlotly.NET.CSharp.csproj
44 lines (40 loc) · 2.09 KB
/
Plotly.NET.CSharp.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>Plotly.NET.CSharp</AssemblyName>
<Name>Plotly.NET.CSharp</Name>
<OutputType>Library</OutputType>
<!-- Optional: Declare that the Repository URL can be published to NuSpec -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Optional: Embed source files that are not tracked by the source control manager to the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Optional: Include PDB in the built .nupkg -->
<IncludeSymbols>true</IncludeSymbols>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../../key.snk</AssemblyOriginatorKeyFile>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../../key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup>
<Authors>Kevin Schneider, open source contributors</Authors>
<Description>Native C# bindings for Plotly.NET 📈🚀.</Description>
<Summary>Native C# bindings for Plotly.NET 📈🚀.</Summary>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://plotly.net</PackageProjectUrl>
<PackageIcon>logo.png</PackageIcon>
<PackageTags>visualization charting plotly fsharp csharp</PackageTags>
<RepositoryUrl>https://github.com/plotly/Plotly.NET/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<FsDocsLicenseLink>https://github.com/plotly/Plotly.NET/blob/dev/LICENSE</FsDocsLicenseLink>
<FsDocsReleaseNotesLink>https://github.com/plotly/Plotly.NET/blob/dev/RELEASE_NOTES.md</FsDocsReleaseNotesLink>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\docs\img\logo.png" Pack="true" PackagePath="\" />
<None Include="./extension.dib" Pack="true" PackagePath="interactive-extensions/dotnet" />
<PackageReference Include="Plotly.NET" Version="3.*" />
</ItemGroup>
</Project>