-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCodout.Framework.EF.csproj
More file actions
33 lines (29 loc) · 1.69 KB
/
Copy pathCodout.Framework.EF.csproj
File metadata and controls
33 lines (29 loc) · 1.69 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
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>6.5.0</Version>
<!-- Compat: o build do pack falha se a API quebrar vs. a versao publicada -->
<EnablePackageValidation>true</EnablePackageValidation>
<PackageValidationBaselineVersion>6.4.0</PackageValidationBaselineVersion>
<Description>Implementação da interface Codout.Framework.DAL para EntityFrameworkCore</Description>
<PackageTags>Codout;Framework;ORM;DAL;EntityFrameworkCore;Repository;UnitOfWork;Specification</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.9">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.9" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Codout.Framework.Data\Codout.Framework.Data.csproj" />
</ItemGroup>
</Project>