-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathPlotly.NET.ImageExport.fsproj
More file actions
44 lines (37 loc) · 1.76 KB
/
Plotly.NET.ImageExport.fsproj
File metadata and controls
44 lines (37 loc) · 1.76 KB
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>
<TargetFrameworks>net5.0; netstandard2.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<WarnOn>3390;$(WarnOn)</WarnOn>
</PropertyGroup>
<PropertyGroup>
<Authors>Kevin Schneider, F# open source contributors</Authors>
<Description>An easily extensible library to render static images from Plotly.NET charts.</Description>
<Summary>An easily extensible library to render static images from Plotly.NET charts.</Summary>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://plotly.net</PackageProjectUrl>
<PackageIcon>logo.png</PackageIcon>
<PackageTags>visualization charting plotly fsharp csharp jpg png svg image</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="\" />
<Compile Include="IGenericChartRenderer.fs" />
<Compile Include="PuppeteerSharpRenderer.fs" />
<Compile Include="ExportEngine.fs" />
<Compile Include="ChartExtensions.fs" />
<Compile Include="GenericChartExtensions.fs" />
<None Include="Playground.fsx" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<ProjectReference Include="..\Plotly.NET\Plotly.NET.fsproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DynamicObj" Version="0.2.0" />
<PackageReference Include="PuppeteerSharp" Version="4.0.0" />
</ItemGroup>
</Project>