13ace6ca61
* Use htmx for front end (#36) * Use short GUIDs in URLs and forms (#1) * Refresh theme (#38) * Use ASP.NET Core for log on/off (#39) * Fix date/time / time zone issues (#41) * Update help for v8 (#42) * Add FAKE build script (#37)
30 lines
955 B
XML
30 lines
955 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
</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="9.0.4" />
|
|
<PackageReference Include="NodaTime.Testing" Version="3.1.2" />
|
|
<PackageReference Update="FSharp.Core" Version="6.0.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PrayerTracker.Data\PrayerTracker.Data.fsproj" />
|
|
<ProjectReference Include="..\PrayerTracker.UI\PrayerTracker.UI.fsproj" />
|
|
<ProjectReference Include="..\PrayerTracker\PrayerTracker.fsproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|