-
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.
Merge pull request #9 from DbUp/release/6.0.0
Release 6.0
- Loading branch information
Showing
14 changed files
with
77 additions
and
191 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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Publish DbUp Packages to NuGet | ||
|
||
on: | ||
release: | ||
types: [ published ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
publish: | ||
name: Publish Package | ||
uses: DbUp/Universe/.github/workflows/publish-release.yml@main | ||
secrets: inherit |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Test Report | ||
run-name: Generate Test Report for run `${{ github.event.workflow_run.run_number }}` branch `${{ github.event.workflow_run.head_branch }}` | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["CI", "build"] | ||
types: [completed] | ||
|
||
jobs: | ||
report: | ||
name: Test Report 🧪 | ||
uses: DbUp/Universe/.github/workflows/test-report.yml@main |
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.3" /> | ||
<PackageReference Include="Npgsql" Version="8.0.5" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Visible="false" Include="../dbup-icon.png" Pack="True" PackagePath=""/> | ||
</ItemGroup> | ||
</Project> |