blob: c0afaaedf3cc9cd0738e388c4e9c4f8a876c191e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="Types.fs" />
<Compile Include="Config.fs" />
<Compile Include="Views.fs" />
<Compile Include="Library.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Falco.Markup" Version="1.2.0" />
</ItemGroup>
</Project>
|