-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFable.Builders.AntDesign.fsproj
96 lines (96 loc) · 3.47 KB
/
Fable.Builders.AntDesign.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>uxsoft</Authors>
<Description>Fable computation expression based bindings for Ant Design React components</Description>
<PackageProjectUrl>https://github.com/uxsoft/Fable.AntDesign</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/uxsoft/Fable.AntDesign</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<Compile Include="Common.fs" />
<Compile Include="Button.fs" />
<Compile Include="Progress.fs" />
<Compile Include="Icon.fs" />
<Compile Include="Typography.fs" />
<Compile Include="Divider.fs" />
<Compile Include="Grid.fs" />
<Compile Include="Layout.fs" />
<Compile Include="Space.fs" />
<Compile Include="Affix.fs" />
<Compile Include="Breadcrumb.fs" />
<Compile Include="Dropdown.fs" />
<Compile Include="Menu.fs" />
<Compile Include="PageHeader.fs" />
<Compile Include="Pagination.fs" />
<Compile Include="Steps.fs" />
<Compile Include="AutoComplete.fs" />
<Compile Include="Cascader.fs" />
<Compile Include="Checkbox.fs" />
<Compile Include="DatePicker.fs" />
<Compile Include="Form.fs" />
<Compile Include="Input.fs" />
<Compile Include="InputNumber.fs" />
<Compile Include="Mentions.fs" />
<Compile Include="Radio.fs" />
<Compile Include="Rate.fs" />
<Compile Include="Select.fs" />
<Compile Include="Slider.fs" />
<Compile Include="Switch.fs" />
<Compile Include="TimePicker.fs" />
<Compile Include="Transfer.fs" />
<Compile Include="TreeSelect.fs" />
<Compile Include="Upload.fs" />
<Compile Include="Avatar.fs" />
<Compile Include="Badge.fs" />
<Compile Include="Calendar.fs" />
<Compile Include="Card.fs" />
<Compile Include="Carousel.fs" />
<Compile Include="Collapse.fs" />
<Compile Include="Comment.fs" />
<Compile Include="Descriptions.fs" />
<Compile Include="Empty.fs" />
<Compile Include="Image.fs" />
<Compile Include="List.fs" />
<Compile Include="Segmented.fs" />
<Compile Include="Statistic.fs" />
<Compile Include="Table.fs" />
<Compile Include="Tabs.fs" />
<Compile Include="Tag.fs" />
<Compile Include="Timeline.fs" />
<Compile Include="Tooltip.fs" />
<Compile Include="Tree.fs" />
<Compile Include="Alert.fs" />
<Compile Include="Drawer.fs" />
<Compile Include="Message.fs" />
<Compile Include="Modal.fs" />
<Compile Include="Notification.fs" />
<Compile Include="Result.fs" />
<Compile Include="Skeleton.fs" />
<Compile Include="Spin.fs" />
<Compile Include="Anchor.fs" />
<Compile Include="BackTop.fs" />
<Compile Include="ConfigProvider.fs" />
<Compile Include="Ant.fs" />
<Compile Include="Composite.fs" />
</ItemGroup>
<ItemGroup>
<Content Include="*.fsproj; **\*.fs">
<Pack>True</Pack>
<PackagePath>fable\</PackagePath>
</Content>
</ItemGroup>
<ItemGroup>
<None Include=".\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Fable.Browser.XMLHttpRequest" Version="1.1.6" />
<PackageReference Include="Fable.Core" Version="3.6.1" />
<PackageReference Include="Fable.MomentJs" Version="2.0.4.23973" />
<PackageReference Include="Fable.Builders.React" Version="4.11.0" />
<PackageReference Include="Feliz" Version="2.3.0" />
</ItemGroup>
</Project>