-
Notifications
You must be signed in to change notification settings - Fork 0
/
FableOfficeFabric.fsproj
32 lines (32 loc) · 1.12 KB
/
FableOfficeFabric.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
<Project Sdk="FSharp.NET.Sdk;Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.6</TargetFramework>
</PropertyGroup>
<ItemGroup>
<!-- Global to the app -->
<Compile Include="src/Global.fs" />
<Compile Include="src/Fabric/fabric.fs"/>
<Compile Include="src/FabricDemo/View.fs"/>
<!-- Info -->
<Compile Include="src/Info/View.fs" />
<!-- Counter -->
<Compile Include="src/Counter/Types.fs" />
<Compile Include="src/Counter/State.fs" />
<Compile Include="src/Counter/View.fs" />
<!-- Home -->
<Compile Include="src/Home/Types.fs" />
<Compile Include="src/Home/State.fs" />
<Compile Include="src/Home/View.fs" />
<!-- Navbar -->
<Compile Include="src/Navbar/View.fs" />
<!-- App -->
<Compile Include="src/Types.fs" />
<Compile Include="src/State.fs" />
<Compile Include="src/App.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.NET.Sdk" Version="1.0.*" PrivateAssets="All" />
<DotNetCliToolReference Include="dotnet-fable" Version="1.1.6" />
</ItemGroup>
<Import Project=".paket\Paket.Restore.targets" />
</Project>