-
Notifications
You must be signed in to change notification settings - Fork 293
/
DataAccess.csproj
27 lines (23 loc) · 1005 Bytes
/
DataAccess.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Authors>Microsoft.Marketplace</Authors>
<Company>Microsoft</Company>
<Product>Marketplace.SaaS.Accelerator</Product>
<AssemblyName>DataAccess</AssemblyName>
<RootNamespace>Marketplace.SaaS.Accelerator.DataAccess</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Folder Include="Context\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.11.4" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>