-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPostgreSqlDemo.wf.cs.csproj
More file actions
29 lines (23 loc) · 989 Bytes
/
PostgreSqlDemo.wf.cs.csproj
File metadata and controls
29 lines (23 loc) · 989 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>PostgreSqlDemo.wf.cs</AssemblyName>
<AssemblyTitle>$(AssemblyName)</AssemblyTitle>
<Description>Active Query Builder 3 PostgreSql Demo</Description>
<RootNamespace>PostgreSqlDemo</RootNamespace>
<OutputType>WinExe</OutputType>
</PropertyGroup>
<!-- PostgreSQL -->
<ItemGroup>
<PackageReference Include="Npgsql" Version="8.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GeneralAssembly\GeneralAssembly.wf.cs.csproj" />
</ItemGroup>
<!-- database-specific metadata provider -->
<ItemGroup Condition="$(UseNugetAqbReferences)">
<PackageReference Include="ActiveQueryBuilder.PostgreSQLMetadataProvider" Version="$(Version)" />
</ItemGroup>
<ItemGroup Condition="!$(UseNugetAqbReferences)">
<ProjectReference Include="$(SolutionDir)src\_metadata-providers\PostgreSQLMetadataProvider\PostgreSQLMetadataProvider.csproj" />
</ItemGroup>
</Project>