forked from npgsql/efcore.pg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
57 lines (53 loc) · 2.79 KB
/
Directory.Build.props
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project>
<PropertyGroup>
<VersionPrefix>9.0.0-preview.1</VersionPrefix>
<LangVersion>preview</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AnalysisLevel>latest</AnalysisLevel>
<NoWarn>NU5105</NoWarn>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)Npgsql.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<ImplicitUsings>true</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Copyright>Copyright 2023 © The Npgsql Development Team</Copyright>
<Company>Npgsql</Company>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageLicenseExpression>PostgreSQL</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/npgsql/efcore.pg</PackageProjectUrl>
<PackageIcon>postgresql.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)postgresql.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<Using Include="System.Diagnostics" />
<Using Include="System.Linq.Expressions" />
<Using Include="System.Reflection" />
<Using Include="Microsoft.EntityFrameworkCore" />
<Using Include="Microsoft.EntityFrameworkCore.ChangeTracking" />
<Using Include="Microsoft.EntityFrameworkCore.Diagnostics" />
<Using Include="Microsoft.EntityFrameworkCore.Design" />
<Using Include="Microsoft.EntityFrameworkCore.Metadata.Builders" />
<Using Include="Microsoft.EntityFrameworkCore.Infrastructure" />
<Using Include="Microsoft.EntityFrameworkCore.Metadata" />
<Using Include="Microsoft.EntityFrameworkCore.Metadata.Conventions" />
<Using Include="Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure" />
<Using Include="Microsoft.EntityFrameworkCore.Migrations" />
<Using Include="Microsoft.EntityFrameworkCore.Migrations.Operations" />
<Using Include="Microsoft.EntityFrameworkCore.Query" />
<Using Include="Microsoft.EntityFrameworkCore.Query.SqlExpressions" />
<Using Include="Microsoft.EntityFrameworkCore.Scaffolding" />
<Using Include="Microsoft.EntityFrameworkCore.Scaffolding.Metadata" />
<Using Include="Microsoft.EntityFrameworkCore.Storage" />
<Using Include="Microsoft.EntityFrameworkCore.Storage.ValueConversion" />
<Using Include="Microsoft.EntityFrameworkCore.Update" />
<Using Include="Microsoft.EntityFrameworkCore.ValueGeneration" />
<Using Include="Microsoft.EntityFrameworkCore.Utilities" />
<Using Include="Microsoft.Extensions.Logging" />
<Using Include="Microsoft.Extensions.DependencyInjection" />
<Using Include="Npgsql" />
<Using Include="NpgsqlTypes" />
</ItemGroup>
</Project>