28 lines
829 B
XML
28 lines
829 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="TestLocalization.fs" />
|
|
<Compile Include="Data\EntitiesTests.fs" />
|
|
<Compile Include="UI\UtilsTests.fs" />
|
|
<Compile Include="UI\ViewModelsTests.fs" />
|
|
<Compile Include="UI\CommonFunctionsTests.fs" />
|
|
<Compile Include="Program.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Expecto" Version="10.2.1" />
|
|
<PackageReference Include="NodaTime.Testing" Version="3.2.1" />
|
|
<PackageReference Update="FSharp.Core" Version="9.0.101" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PrayerTracker.UI\PrayerTracker.UI.fsproj" />
|
|
<ProjectReference Include="..\PrayerTracker\PrayerTracker.fsproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|