-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathMLOps.NET.SQLServer.csproj
More file actions
25 lines (21 loc) · 945 Bytes
/
MLOps.NET.SQLServer.csproj
File metadata and controls
25 lines (21 loc) · 945 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<Description>MLOps.NET SQL Server Storage Provider</Description>
<PackageTags>$(PackageTags), SQLServer</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\MLOps.NET\MLOps.NET.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.11" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.11" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.1"><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>