blob: f00fb49ca15fe0cf96e2d7c20891f88ae85ff88f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="App.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Fable.Browser.Dom" Version="2.20.0" />
<PackageReference Include="Fable.Core" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Aamukampa.Core\Aamukampa.Core.fsproj" />
</ItemGroup>
</Project>
|