-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated to dbup-core 6.0 beta, targeted netstandard2 and update Npgsq…
…l reference
- Loading branch information
Showing
11 changed files
with
49 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...portTests.VerifyBasicSupport.verified.txt → ...portTests.VerifyBasicSupport.approved.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...JournalCreationIfNameChanged.verified.txt → ...JournalCreationIfNameChanged.approved.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
....VerifyVariableSubstitutions.verified.txt → ....VerifyVariableSubstitutions.approved.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 0 additions & 45 deletions
45
src/Tests/ApprovalFiles/NoPublicApiChanges.Run.Net.verified.cs
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,31 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Description>DbUp makes it easy to deploy and upgrade SQL Server databases. This package adds Amazon Redshift support.</Description> | ||
<Title>DbUp Redshift Support</Title> | ||
<TargetFrameworks>netstandard1.3;netstandard2.0;net35;net45</TargetFrameworks> | ||
<AssemblyName>dbup-redshift</AssemblyName> | ||
<RootNamespace>DbUp.Redshift</RootNamespace> | ||
<AssemblyOriginatorKeyFile>../dbup.snk</AssemblyOriginatorKeyFile> | ||
<SignAssembly>true</SignAssembly> | ||
<RepositoryUrl>https://github.com/DbUp/dbup-redshift.git</RepositoryUrl> | ||
<Product>dbup_redshift</Product> | ||
<PackageId>dbup-redshift</PackageId> | ||
<PackageIcon>dbup-icon.png</PackageIcon> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<Description>DbUp makes it easy to deploy and upgrade SQL Server databases. This package adds Amazon Redshift support.</Description> | ||
<Title>DbUp Redshift Support</Title> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<AssemblyName>dbup-redshift</AssemblyName> | ||
<RootNamespace>DbUp.Redshift</RootNamespace> | ||
<AssemblyOriginatorKeyFile>../dbup.snk</AssemblyOriginatorKeyFile> | ||
<SignAssembly>true</SignAssembly> | ||
<RepositoryUrl>https://github.com/DbUp/dbup-redshift.git</RepositoryUrl> | ||
<Product>dbup_redshift</Product> | ||
<PackageId>dbup-redshift</PackageId> | ||
<PackageIcon>dbup-icon.png</PackageIcon> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(TargetFramework)' == 'net35'"> | ||
<DefineConstants>$(DefineConstants);NPGSQLv2</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="dbup-core" Version="4.5.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net35'"> | ||
<PackageReference Include="Npgsql" Version="2.2.7" /> <!-- Last version that supports .NET 3.5 --> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' != 'net35'"> | ||
<PackageReference Include="Npgsql" Version="3.2.6" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Visible="false" Include="../dbup-icon.png" Pack="True" PackagePath="" /> | ||
</ItemGroup> | ||
<PropertyGroup Condition="'$(CI)' == 'true'"> | ||
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> <!-- Perform a deterministic build, so our binaries aren't impacted by build server environmental factors (e.g. file paths). --> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> <!-- Embed source files that are not tracked by the source control manager in the PDB --> | ||
<DebugType>embedded</DebugType> <!-- Recommended: Embed symbols containing Source Link in the main file (exe/dll) --> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="dbup-core" Version="6.0.0-beta.108"/> | ||
<PackageReference Include="Npgsql" Version="8.0.3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Visible="false" Include="../dbup-icon.png" Pack="True" PackagePath=""/> | ||
</ItemGroup> | ||
</Project> |