-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathXtensive.Orm.PostgreSql.csproj
More file actions
34 lines (34 loc) · 1.33 KB
/
Xtensive.Orm.PostgreSql.csproj
File metadata and controls
34 lines (34 loc) · 1.33 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
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Xtensive</RootNamespace>
<PackageId>Xtensive.Orm.PostgreSql</PackageId>
<Title>$(DoProductName) provider for PostgreSQL</Title>
<AssemblyTitle>$(Title)</AssemblyTitle>
<PackageDescription>Adds support for PostgreSQL to $(DoProductName)</PackageDescription>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(OrmKeyFile)</AssemblyOriginatorKeyFile>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<WarningLevel>2</WarningLevel>
</PropertyGroup>
<PropertyGroup Label="Debug" Condition="'$(Configuration)'=='Debug'">
<DefineConstants>TRACE;DEBUG</DefineConstants>
</PropertyGroup>
<PropertyGroup Label="Release" Condition="'$(Configuration)'=='Release'">
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Npgsql" Version="6.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Xtensive.Orm\Xtensive.Orm.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Xtensive.Orm\Properties\Visibility.cs">
<Link>Properties\Visibility.cs</Link>
</Compile>
</ItemGroup>
</Project>