23 lines
574 B
XML
23 lines
574 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Program.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FSharp.Data" Version="4.2.3" />
|
|
<PackageReference Include="LiteDB" Version="5.0.11" />
|
|
<PackageReference Include="NodaTime" Version="3.0.9" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MyPrayerJournal\MyPrayerJournal.fsproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|