forked from Zaid-Ajaj/Feliz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.fsproj
68 lines (67 loc) · 3.45 KB
/
App.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
68
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Feliz.Delay\Feliz.Delay.fsproj" />
<ProjectReference Include="..\Feliz.UseMediaQuery\Feliz.UseMediaQuery.fsproj" />
<ProjectReference Include="..\Feliz.Recharts\Feliz.Recharts.fsproj" />
<ProjectReference Include="..\Feliz.Markdown\Feliz.Markdown.fsproj" />
<ProjectReference Include="..\Feliz.PigeonMaps\Feliz.PigeonMaps.fsproj" />
<ProjectReference Include="..\Feliz.Popover\Feliz.Popover.fsproj" />
<ProjectReference Include="..\Feliz.UseDeferred\Feliz.UseDeferred.fsproj" />
<ProjectReference Include="..\Feliz.UseElmish\Feliz.UseElmish.fsproj" />
<ProjectReference Include="..\Feliz.RoughViz\Feliz.RoughViz.fsproj" />
<ProjectReference Include="..\Feliz.SelectSearch\Feliz.SelectSearch.fsproj" />
<ProjectReference Include="..\Feliz.Kawaii\Feliz.Kawaii.fsproj" />
<ProjectReference Include="..\Feliz\Feliz.fsproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="Feliz.UseListener\PromiseRejectionEvent.fs" />
<Compile Include="Feliz.UseListener\Listener.fs" />
<Compile Include="Feliz.Router\Router.fs" />
<Compile Include="Urls.fs" />
<Compile Include="Recharts\AreaCharts\AreaChartFillByValue.fs" />
<Compile Include="Recharts/AreaCharts/SynchronizedAreaChart.fs" />
<Compile Include="Recharts/AreaCharts/Main.fs" />
<Compile Include="Recharts/AreaCharts/SimpleAreaChart.fs" />
<Compile Include="Recharts/AreaCharts/StackedAreaChart.fs" />
<Compile Include="Recharts/AreaCharts/TinyAreaChart.fs" />
<Compile Include="Recharts/AreaCharts/ResponsiveFullWidth.fs" />
<Compile Include="Recharts/AreaCharts/OptionalValues.fs" />
<Compile Include="Recharts/LineCharts/SimpleLineChart.fs" />
<Compile Include="Recharts/LineCharts/ResponsiveFullWidth.fs" />
<Compile Include="Recharts/LineCharts/CustomizedLabelLineChart.fs" />
<Compile Include="Recharts/LineCharts/OptionalValues.fs" />
<Compile Include="Recharts/LineCharts/BiaxialLineChart.fs" />
<Compile Include="Recharts/BarCharts/SimpleBarChart.fs" />
<Compile Include="Recharts/BarCharts/StackedBarChart.fs" />
<Compile Include="Recharts/BarCharts/MixBarChart.fs" />
<Compile Include="Recharts/BarCharts/TinyBarChart.fs" />
<Compile Include="Recharts/BarCharts/PositiveAndNegative.fs" />
<Compile Include="Recharts/PieCharts/CustomizedLabelPieChart.fs" />
<Compile Include="Recharts/PieCharts/TwoLevelPieChart.fs" />
<Compile Include="Recharts/PieCharts/StraightAngle.fs" />
<Compile Include="Recharts/RadarCharts/SimpleRadarChart.fs" />
<Compile Include="PigeonMaps.fs" />
<Compile Include="Popover.fs" />
<Compile Include="CodeSplitting.fs" />
<Compile Include="FPSCounter.fs" />
<Compile Include="DelayedComponent.fs" />
<Compile Include="UseDeferredExamples.fs" />
<Compile Include="UseElmishExamples.fs" />
<Compile Include="UseMediaQueryExamples.fs" />
<Compile Include="Examples.fs" />
<Compile Include="DelayExamples.fs" />
<Compile Include="Tests.fs" />
<Compile Include="App.fs" />
<None Include="paket.references" />
</ItemGroup>
<PropertyGroup>
<NpmDependencies>
<NpmPackage Name="react-highlight" Version=">= 0.11.1" />
</NpmDependencies>
</PropertyGroup>
<Import Project="..\.paket\Paket.Restore.targets" />
</Project>