forked from plotly/Plotly.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlotly.NET.Tests.fsproj
More file actions
47 lines (43 loc) · 1.9 KB
/
Plotly.NET.Tests.fsproj
File metadata and controls
47 lines (43 loc) · 1.9 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<GenerateProgramFile>false</GenerateProgramFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="TestUtils.fs" />
<Compile Include="ChartAPIs\WithAxis.fs" />
<Compile Include="ChartAPIs\Combine.fs" />
<Compile Include="CommonAbstractions\StyleParams.fs" />
<Compile Include="CommonAbstractions\Colors.fs" />
<Compile Include="LayoutObjects\Slider.fs" />
<Compile Include="LayoutObjects\LinearAxis.fs" />
<Compile Include="Traces\TraceStaticMembers.fs" />
<Compile Include="Traces\TraceStyle.fs" />
<Compile Include="Traces\TraceID.fs" />
<Compile Include="HtmlCodegen\SimpleTests.fs" />
<Compile Include="HtmlCodegen\ChartLayout.fs" />
<Compile Include="HtmlCodegen\SimpleCharts.fs" />
<Compile Include="HtmlCodegen\Charts3D.fs" />
<Compile Include="HtmlCodegen\DistributionCharts.fs" />
<Compile Include="HtmlCodegen\GeoMapCharts.fs" />
<Compile Include="HtmlCodegen\MapboxMapCharts.fs" />
<Compile Include="HtmlCodegen\FinanceCharts.fs" />
<Compile Include="HtmlCodegen\PolarCharts.fs" />
<Compile Include="HtmlCodegen\TernaryCharts.fs" />
<Compile Include="HtmlCodegen\CarpetCharts.fs" />
<Compile Include="HtmlCodegen\CategoricalCharts.fs" />
<Compile Include="HtmlCodegen\SmithCharts.fs" />
<Compile Include="Main.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Deedle" Version="2.4.1" />
<PackageReference Include="Expecto" Version="9.*" />
<PackageReference Include="FSharp.Data" Version="4.2.0" />
<PackageReference Include="YoloDev.Expecto.TestSdk" Version="0.*" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Plotly.NET\Plotly.NET.fsproj" />
</ItemGroup>
</Project>