24 lines
817 B
XML
24 lines
817 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Entities.fs" />
|
|
<Compile Include="AppDbContext.fs" />
|
|
<Compile Include="DataAccess.fs" />
|
|
<Compile Include="Migrations\20161217153124_InitialDatabase.fs" />
|
|
<Compile Include="Migrations\AppDbContextModelSnapshot.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FSharp.EFCore.OptionConverter" Version="1.0.0" />
|
|
<PackageReference Include="Microsoft.FSharpLu" Version="0.11.6" />
|
|
<PackageReference Include="NodaTime" Version="2.4.7" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="3.1.2" />
|
|
<PackageReference Include="TaskBuilder.fs" Version="2.1.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|