Add JSON
All checks were successful
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/all-checks-complete Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/all-checks-complete Pipeline was successful

This commit is contained in:
Smaug123
2023-09-07 20:25:13 +01:00
parent 1b1c902667
commit 98014df27d
35 changed files with 1407 additions and 113 deletions

View File

@@ -1,34 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Domain\Deck.fs"/>
<Compile Include="Domain\Model.fs"/>
<Compile Include="Domain\Note.fs"/>
<Compile Include="Domain\Card.fs"/>
<Compile Include="Domain\Review.fs"/>
<Compile Include="Domain\DeckConfiguration.fs"/>
<Compile Include="Domain\CollectionConfiguration.fs"/>
<Compile Include="Domain\Collection.fs"/>
<Compile Include="Domain\Grave.fs"/>
<Compile Include="SerialisedDomain.fs"/>
<Compile Include="SerialisedCard.fs" />
<Compile Include="SerialisedCollection.fs"/>
<Compile Include="Base91.fs" />
<Compile Include="Sqlite.fs"/>
<Compile Include="Program.fs"/>
<Content Include="Examples\example-collection-conf.json"/>
<Content Include="Examples\example-collection-models.json"/>
<Content Include="Examples\example-collection-decks.json"/>
<Content Include="Examples\example-collection-deck-conf.json"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.SQLite" Version="7.0.10"/>
</ItemGroup>
<ItemGroup>
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AnkiStatic.Lib\AnkiStatic.Lib.fsproj" />
</ItemGroup>
</Project>