17 lines
458 B
XML
17 lines
458 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Giraffe" Version="6.*" />
|
|
<PackageReference Include="FSharp.Data" Version="4.*" />
|
|
<PackageReference Include="Thoth.Json" Version="10.4.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Program.fs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|