23 lines
717 B
XML
23 lines
717 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Types.fs" />
|
|
<Compile Include="Controller.fs" />
|
|
<Compile Include="Program.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.12.4" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.3.9" />
|
|
<PackageReference Include="Saturn" Version="0.17.0" />
|
|
<PackageReference Include="Thoth.Json" Version="10.4.1" />
|
|
<PackageReference Include="Thoth.Json.Giraffe" Version="6.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|