-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathFSharp.Plotly.fsproj
67 lines (67 loc) · 2.81 KB
/
FSharp.Plotly.fsproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45;net47</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Dotnet' ">
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' Or '$(Configuration)' == 'Release' ">
<TargetFrameworks>netstandard2.0;net45;net47</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>FSharp.Plotly</RootNamespace>
<AssemblyName>FSharp.Plotly</AssemblyName>
<Name>FSharp.Plotly</Name>
<OutputType>Library</OutputType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- 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 -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<Configurations>Debug;Release;Dotnet</Configurations>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
<Compile Include="StyleParams.fs" />
<Compile Include="DynamicObj.fs" />
<Compile Include="Colors.fs" />
<Compile Include="Colorbar.fs" />
<Compile Include="RangeSlider.fs" />
<Compile Include="Light.fs" />
<Compile Include="Contours.fs" />
<Compile Include="Dimensions.fs" />
<Compile Include="Domain.fs" />
<Compile Include="Line.fs" />
<Compile Include="Box.fs" />
<Compile Include="Meanline.fs" />
<Compile Include="Marker.fs" />
<Compile Include="Font.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="Trace.fs" />
<Compile Include="Trace3d.fs" />
<Compile Include="LayoutGrid.fs" />
<Compile Include="Layout.fs" />
<Compile Include="Config.fs" />
<Compile Include="GenericChart.fs" />
<Compile Include="Chart.fs" />
<Compile Include="ChartExtensions.fs" />
<Compile Include="CandelstickExtension.fs" />
<Compile Include="SankeyExtension.fs" />
<Compile Include="Templates.fs" />
<None Include="Playground.fsx" />
<None Include="TestScript.fsx" />
<None Include="paket.references" />
<None Include="paket.template" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>