-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathEmulsion.Database.fsproj
More file actions
31 lines (25 loc) · 1.03 KB
/
Emulsion.Database.fsproj
File metadata and controls
31 lines (25 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!--
SPDX-FileCopyrightText: 2025 Emulsion contributors <https://github.com/codingteam/emulsion>
SPDX-License-Identifier: MIT
-->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Entities.fs" />
<Compile Include="EmulsionDbContext.fs" />
<Compile Include="Migrations\*.fs" />
<Compile Include="DatabaseSettings.fs" />
<Compile Include="DataStorage.fs" />
<Compile Include="QueryableEx.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="EntityFrameworkCore.FSharp" Version="6.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0" />
</ItemGroup>
</Project>