forked from plotly/Plotly.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlotly.NET.fsproj
More file actions
91 lines (91 loc) · 4.07 KB
/
Plotly.NET.fsproj
File metadata and controls
91 lines (91 loc) · 4.07 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0; net5.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Plotly.NET</RootNamespace>
<AssemblyName>Plotly.NET</AssemblyName>
<Name>Plotly.NET</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>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<Configurations>Debug;Release;Dotnet</Configurations>
</PropertyGroup>
<PropertyGroup>
<Authors>Timo Mühlhaus, Kevin Schneider, F# open source contributors</Authors>
<Description>plotly.js charts in .NET programming languages 📈🚀. </Description>
<Summary>Plotly.NET provides functions for generating and rendering plotly.js charts in .NET programming languages 📈🚀.</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="\" />
<Compile Include="AssemblyInfo.fs" />
<Compile Include="StyleParams.fs" />
<Compile Include="DynamicObj.fs" />
<Compile Include="Frame.fs" />
<Compile Include="Colors.fs" />
<Compile Include="StockData.fs" />
<Compile Include="Font.fs" />
<Compile Include="Pathbar.fs" />
<Compile Include="TreemapTiling.fs" />
<Compile Include="Colorbar.fs" />
<Compile Include="RangeSlider.fs" />
<Compile Include="Light.fs" />
<Compile Include="Legend.fs" />
<Compile Include="Contours.fs" />
<Compile Include="Dimensions.fs" />
<Compile Include="Domain.fs" />
<Compile Include="Line.fs" />
<Compile Include="WaterfallConnector.fs" />
<Compile Include="FunnelConnector.fs" />
<Compile Include="Box.fs" />
<Compile Include="Meanline.fs" />
<Compile Include="Marker.fs" />
<Compile Include="Hoverlabel.fs" />
<Compile Include="Axis.fs" />
<Compile Include="Bins.fs" />
<Compile Include="Cumulative.fs" />
<Compile Include="Scene.fs" />
<Compile Include="Selected.fs" />
<Compile Include="Shape.fs" />
<Compile Include="Error.fs" />
<Compile Include="Table.fs" />
<Compile Include="GeoProjection.fs" />
<Compile Include="Geo.fs" />
<Compile Include="Trace.fs" />
<Compile Include="Trace3d.fs" />
<Compile Include="LayoutGrid.fs" />
<Compile Include="Annotation.fs" />
<Compile Include="Layout.fs" />
<Compile Include="Template.fs" />
<Compile Include="Config.fs" />
<Compile Include="DisplayOptions.fs" />
<Compile Include="GenericChart.fs" />
<Compile Include="Chart.fs" />
<Compile Include="ChartExtensions.fs" />
<Compile Include="GenericChartExtensions.fs" />
<Compile Include="CandelstickExtension.fs" />
<Compile Include="SankeyExtension.fs" />
<None Include="Playground.fsx" />
<None Include="TestScript.fsx" />
<None Include="paket.references" />
<None Include="paket.template" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
</Project>