Files
anki-static/AnkiStatic/AnkiStatic.fsproj
patrick 73a0342291
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/all-checks-complete Pipeline was successful
Simplify flake (#9)
Co-authored-by: Smaug123 <3138005+Smaug123@users.noreply.github.com>
Reviewed-on: #9
2024-05-31 23:33:46 +00:00

28 lines
717 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="ArgsCrate.fs" />
<Compile Include="Result.fs" />
<Compile Include="OutputSchema.fs" />
<Compile Include="Render.fs" />
<Compile Include="Verify.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AnkiStatic.Lib\AnkiStatic.Lib.fsproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Argu" Version="6.1.1" />
<PackageReference Include="NJsonSchema" Version="11.0.0" />
</ItemGroup>
</Project>