-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDbEx.Postgres.csproj
More file actions
40 lines (32 loc) · 1.22 KB
/
Copy pathDbEx.Postgres.csproj
File metadata and controls
40 lines (32 loc) · 1.22 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
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<RootNamespace>DbEx.Postgres</RootNamespace>
<Product>DbEx</Product>
<Title>DbEx PostgreSQL Migration Tool.</Title>
<Description>DbEX Database Migration tool for PostgreSQL.</Description>
<PackageTags>dbex database dbup db-up postgres postgresql sql</PackageTags>
<NoWarn>$(NoWarn);CA1873</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\**\*" />
<EmbeddedResource Include="Migrations\**\*" />
<EmbeddedResource Include="Data\**\*" />
<EmbeddedResource Include="Templates\**\*" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Scripts\Database.yaml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Npgsql" Version="10.0.1" />
<PackageReference Include="dbup-postgresql" Version="6.1.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DbEx\DbEx.csproj" />
</ItemGroup>
<Import Project="..\..\Common.targets" />
</Project>