|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 |
| - <PropertyGroup> |
4 |
| - <Description>DbUp makes it easy to deploy and upgrade SQL Server databases. This package adds Amazon Redshift support.</Description> |
5 |
| - <Title>DbUp Redshift Support</Title> |
6 |
| - <TargetFrameworks>netstandard1.3;netstandard2.0;net35;net45</TargetFrameworks> |
7 |
| - <AssemblyName>dbup-redshift</AssemblyName> |
8 |
| - <RootNamespace>DbUp.Redshift</RootNamespace> |
9 |
| - <AssemblyOriginatorKeyFile>../dbup.snk</AssemblyOriginatorKeyFile> |
10 |
| - <SignAssembly>true</SignAssembly> |
11 |
| - <RepositoryUrl>https://github.com/DbUp/dbup-redshift.git</RepositoryUrl> |
12 |
| - <Product>dbup_redshift</Product> |
13 |
| - <PackageId>dbup-redshift</PackageId> |
14 |
| - <PackageIcon>dbup-icon.png</PackageIcon> |
15 |
| - </PropertyGroup> |
| 3 | + <PropertyGroup> |
| 4 | + <Description>DbUp makes it easy to deploy and upgrade SQL Server databases. This package adds Amazon Redshift support.</Description> |
| 5 | + <Title>DbUp Redshift Support</Title> |
| 6 | + <TargetFramework>netstandard2.0</TargetFramework> |
| 7 | + <AssemblyName>dbup-redshift</AssemblyName> |
| 8 | + <RootNamespace>DbUp.Redshift</RootNamespace> |
| 9 | + <AssemblyOriginatorKeyFile>../dbup.snk</AssemblyOriginatorKeyFile> |
| 10 | + <SignAssembly>true</SignAssembly> |
| 11 | + <RepositoryUrl>https://github.com/DbUp/dbup-redshift.git</RepositoryUrl> |
| 12 | + <Product>dbup_redshift</Product> |
| 13 | + <PackageId>dbup-redshift</PackageId> |
| 14 | + <PackageIcon>dbup-icon.png</PackageIcon> |
| 15 | + </PropertyGroup> |
16 | 16 |
|
17 |
| - <PropertyGroup Condition="'$(TargetFramework)' == 'net35'"> |
18 |
| - <DefineConstants>$(DefineConstants);NPGSQLv2</DefineConstants> |
19 |
| - </PropertyGroup> |
20 |
| - |
21 |
| - <ItemGroup> |
22 |
| - <PackageReference Include="dbup-core" Version="4.5.0" /> |
23 |
| - </ItemGroup> |
24 |
| - |
25 |
| - <ItemGroup Condition="'$(TargetFramework)' == 'net35'"> |
26 |
| - <PackageReference Include="Npgsql" Version="2.2.7" /> <!-- Last version that supports .NET 3.5 --> |
27 |
| - </ItemGroup> |
28 |
| - |
29 |
| - <ItemGroup Condition="'$(TargetFramework)' != 'net35'"> |
30 |
| - <PackageReference Include="Npgsql" Version="3.2.6" /> |
31 |
| - </ItemGroup> |
32 |
| - |
33 |
| - <ItemGroup> |
34 |
| - <None Visible="false" Include="../dbup-icon.png" Pack="True" PackagePath="" /> |
35 |
| - </ItemGroup> |
| 17 | + <PropertyGroup Condition="'$(CI)' == 'true'"> |
| 18 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> <!-- Perform a deterministic build, so our binaries aren't impacted by build server environmental factors (e.g. file paths). --> |
| 19 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> <!-- Embed source files that are not tracked by the source control manager in the PDB --> |
| 20 | + <DebugType>embedded</DebugType> <!-- Recommended: Embed symbols containing Source Link in the main file (exe/dll) --> |
| 21 | + </PropertyGroup> |
| 22 | + |
| 23 | + <ItemGroup> |
| 24 | + <PackageReference Include="dbup-core" Version="6.0.3" /> |
| 25 | + <PackageReference Include="Npgsql" Version="8.0.5" /> |
| 26 | + </ItemGroup> |
36 | 27 |
|
| 28 | + <ItemGroup> |
| 29 | + <None Visible="false" Include="../dbup-icon.png" Pack="True" PackagePath=""/> |
| 30 | + </ItemGroup> |
37 | 31 | </Project>
|
0 commit comments