-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfableTestLab.fsproj
More file actions
executable file
·38 lines (38 loc) · 1.34 KB
/
fableTestLab.fsproj
File metadata and controls
executable file
·38 lines (38 loc) · 1.34 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
<Project Sdk="FSharp.NET.Sdk;Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.6</TargetFramework>
</PropertyGroup>
<ItemGroup>
<!-- Global to the app -->
<Compile Include="src/Global.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" />
<!-- Light -->
<Compile Include="src/Light/Types.fs" />
<Compile Include="src/Light/State.fs" />
<Compile Include="src/Light/View.fs" />
<!-- TreeView -->
<Compile Include="src/TreeView/Types.fs" />
<Compile Include="src/TreeView/State.fs" />
<Compile Include="src/TreeView/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.0.8" />
</ItemGroup>
<Import Project=".paket\Paket.Restore.targets" />
</Project>