blob: 5544c2d78b88734a760532159dcb8af254d03035 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<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="Library.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Falco.Markup" Version="1.2.0" />
</ItemGroup>
</Project>
|