-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathMLOps.NET.SQLite.csproj
More file actions
31 lines (26 loc) · 1.17 KB
/
MLOps.NET.SQLite.csproj
File metadata and controls
31 lines (26 loc) · 1.17 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<Description>MLOps.NET SQLite storage provider</Description>
<PackageTags>$(PackageTags), sqlite</PackageTags>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Migrations\20200811200006_DataDistribution.cs" />
<Compile Remove="Migrations\20200811200006_DataDistribution.Designer.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MLOps.NET\MLOps.NET.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="5.0.11" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.11" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.11"><IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Nerdbank.GitVersioning" Version="3.4.244" />
</ItemGroup>
<ItemGroup>
<None Remove="Nerdbank.GitVersioning" />
</ItemGroup>
</Project>