From a3b113cee8a65dae94e045f9a9d65e15d980e052 Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Mon, 21 Aug 2023 08:31:21 +0100 Subject: [PATCH 01/28] (build) Fix failing build Recently, including the default value for UseInProcessClient in the cake.config file has been causing a build error. Rather than dig into what is going on, let's remove the inclusion of the default value, and let it execute without it. --- cake.config | 1 - 1 file changed, 1 deletion(-) diff --git a/cake.config b/cake.config index 65324f55..a5fa61f5 100644 --- a/cake.config +++ b/cake.config @@ -3,7 +3,6 @@ [Nuget] Source=https://api.nuget.org/v3/index.json -UseInProcessClient=true [Paths] Tools=./tools From df6f8b8d09caeebd9daf1d42817c8cc0fce0f676 Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Mon, 21 Aug 2023 08:42:33 +0100 Subject: [PATCH 02/28] (build) Update to newer version of Cake.Recipe 2.2.1 -> 3.0.1 This includes a bump to the version of Cake.Tool being used, as well as removal of some properties (shouldRunDupFinder, and dupFinderExcludePattern) as these are no longer supported. --- .config/dotnet-tools.json | 2 +- recipe.cake | 9 +-------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 473566e3..d249b4c0 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "cake.tool": { - "version": "0.38.5", + "version": "1.3.0", "commands": [ "dotnet-cake" ] diff --git a/recipe.cake b/recipe.cake index 66e5bf04..ec91a75f 100644 --- a/recipe.cake +++ b/recipe.cake @@ -1,4 +1,4 @@ -#load nuget:?package=Cake.Recipe&version=2.2.1 +#load nuget:?package=Cake.Recipe&version=3.0.1 #tool dotnet:?package=dotnet-t4&version=2.2.1 Environment.SetVariableNames(githubTokenVariable: "GITTOOLS_GITHUB_TOKEN"); @@ -14,7 +14,6 @@ BuildParameters.SetParameters(context: Context, appVeyorAccountName: "GitTools", shouldRunDotNetCorePack: true, shouldRunIntegrationTests: true, - shouldRunDupFinder: false, integrationTestScriptPath: "./tests/integration/tests.cake", twitterMessage: standardNotificationMessage, gitterMessage: "@/all " + standardNotificationMessage); @@ -24,12 +23,6 @@ BuildParameters.PackageSources.Add(new PackageSourceData(Context, "GPR", "https: BuildParameters.PrintParameters(Context); ToolSettings.SetToolSettings(context: Context, - dupFinderExcludePattern: new string[] { - BuildParameters.RootDirectoryPath + "/src/GitReleaseManager.Core.Tests/**/*.cs", - BuildParameters.RootDirectoryPath + "/src/GitReleaseManager.Tests/**/*.cs", - BuildParameters.RootDirectoryPath + "/src/GitReleaseManager.IntegrationTests/**/*.cs", - BuildParameters.RootDirectoryPath + "/src/GitReleaseManager/AutoMapperConfiguration.cs", - "**/*.AssemblyInfo.cs" }, testCoverageFilter: "+[GitReleaseManager*]* -[GitReleaseManager.Core.Tests*]* -[GitReleaseManager.Tests*]*", testCoverageExcludeByAttribute: "*.ExcludeFromCodeCoverage*", testCoverageExcludeByFile: "*/*Designer.cs;*/*.g.cs;*/*.g.i.cs"); From 7a3d5dcc2fff2325065da26d1cb038a33be71537 Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Mon, 21 Aug 2023 08:47:42 +0100 Subject: [PATCH 03/28] (build) Get CI builds working Pin version of Cake.Tool to be the same as what is defined in the tool manifest file, and also update to a newer version of the AppVeyor build image. --- .appveyor.yml | 2 +- .github/workflows/build.yml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 20636ca0..3cb3a0db 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -2,7 +2,7 @@ #---------------------------------# # Build Image # #---------------------------------# -image: Visual Studio 2019 +image: Visual Studio 2022 #---------------------------------# # Build Script # diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e1a100f0..bdea0a32 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,8 +38,7 @@ jobs: script-path: recipe.cake target: CI verbosity: Normal - cake-version: 0.38.5 - cake-bootstrap: true + cake-version: tool-manifest - name: Upload Issues-Report uses: actions/upload-artifact@v2 From 941ac9b379d1d23ff1aa9c31fd82656cfb9592a4 Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Mon, 21 Aug 2023 08:52:27 +0100 Subject: [PATCH 04/28] (build) Install required .NET Version This will be required until we move off of .NET 5.0. --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bdea0a32..44a4d743 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,6 +26,11 @@ jobs: - name: Fetch all tags and branches run: git fetch --prune --unshallow + - name: Install .NET SDK 5.0.x + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '5.0.x' + - name: Cache Tools uses: actions/cache@v2 with: From 8fe01b84010aa2ba455da1bf4acc5b36a264821f Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Mon, 21 Aug 2023 09:18:01 +0100 Subject: [PATCH 05/28] (build) Add .NET 3.1.x as well This is currently still needed by the Test projects. This will need to be reviewed before another release is completed. --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 44a4d743..e2556efa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,10 +26,12 @@ jobs: - name: Fetch all tags and branches run: git fetch --prune --unshallow - - name: Install .NET SDK 5.0.x + - name: Install .NET SDK 3.1.x and 5.0.x uses: actions/setup-dotnet@v3 with: - dotnet-version: '5.0.x' + dotnet-version: | + '3.1.x' + '5.0.x' - name: Cache Tools uses: actions/cache@v2 From 5d8146079ab47ae473d55915193072f9df903115 Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Mon, 21 Aug 2023 09:19:32 +0100 Subject: [PATCH 06/28] (maint) Fix stylecop and compiler warnings While trying to get the builds to work on AppVeyor and GitHub, noticed that there were a couple of build warnings (both from StyleCop and MSBuild) that were quick wins, so took the opportunity to fix them up. --- .../GitReleaseManager.Core.Tests.csproj | 2 -- src/GitReleaseManager.Core/Configuration/ConfigSerializer.cs | 1 + .../Exceptions/InvalidIssuesException.cs | 4 +++- src/GitReleaseManager.Core/Extensions/StringExtensions.cs | 2 +- src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj | 2 -- 5 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj b/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj index 9ef6d7ee..850c2169 100644 --- a/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj +++ b/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj @@ -19,8 +19,6 @@ - - runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/GitReleaseManager.Core/Configuration/ConfigSerializer.cs b/src/GitReleaseManager.Core/Configuration/ConfigSerializer.cs index 102b1833..f144fe4f 100644 --- a/src/GitReleaseManager.Core/Configuration/ConfigSerializer.cs +++ b/src/GitReleaseManager.Core/Configuration/ConfigSerializer.cs @@ -94,6 +94,7 @@ private static void SetConfigurationSamples(object config, Type configType, Text { property.SetValue(config, null); } + continue; } else if (yamlMemberAttribute.DefaultValuesHandling == DefaultValuesHandling.OmitNull) diff --git a/src/GitReleaseManager.Core/Exceptions/InvalidIssuesException.cs b/src/GitReleaseManager.Core/Exceptions/InvalidIssuesException.cs index add90d13..bad42797 100644 --- a/src/GitReleaseManager.Core/Exceptions/InvalidIssuesException.cs +++ b/src/GitReleaseManager.Core/Exceptions/InvalidIssuesException.cs @@ -33,6 +33,8 @@ public InvalidIssuesException(List errors, string message, Exception inn protected InvalidIssuesException( System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - : base(info, context) { } + : base(info, context) + { + } } } diff --git a/src/GitReleaseManager.Core/Extensions/StringExtensions.cs b/src/GitReleaseManager.Core/Extensions/StringExtensions.cs index 2d106c09..12baff6b 100644 --- a/src/GitReleaseManager.Core/Extensions/StringExtensions.cs +++ b/src/GitReleaseManager.Core/Extensions/StringExtensions.cs @@ -12,7 +12,7 @@ public static string ReplaceMilestoneTitle(this string source, string milestoneK { var dict = new Dictionary { - { milestoneKey.Trim('{','}'), milestoneTitle }, + { milestoneKey.Trim('{','}'), milestoneTitle } }; return source.ReplaceTemplate(dict); diff --git a/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj b/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj index 83e05a39..b2fe3f35 100644 --- a/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj +++ b/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj @@ -19,8 +19,6 @@ - - runtime; build; native; contentfiles; analyzers; buildtransitive all From 3d577f412233f27a502c2ecefa6b73c4ac2baaae Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Mon, 21 Aug 2023 09:33:17 +0100 Subject: [PATCH 07/28] (build) Fix build error In the previous commit, an attempt was made to fix a StyleCop warning, but this actually introduced a StyleCop error. A pragma has been introduced to override the warning that was attempting to be fixed. --- src/GitReleaseManager.Core/Extensions/StringExtensions.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/GitReleaseManager.Core/Extensions/StringExtensions.cs b/src/GitReleaseManager.Core/Extensions/StringExtensions.cs index 12baff6b..2fbe9fc9 100644 --- a/src/GitReleaseManager.Core/Extensions/StringExtensions.cs +++ b/src/GitReleaseManager.Core/Extensions/StringExtensions.cs @@ -10,10 +10,12 @@ internal static class StringExtensions { public static string ReplaceMilestoneTitle(this string source, string milestoneKey, string milestoneTitle) { +#pragma warning disable SA1001 // Commas should be spaced correctly var dict = new Dictionary { - { milestoneKey.Trim('{','}'), milestoneTitle } + { milestoneKey.Trim('{','}'), milestoneTitle }, }; +#pragma warning restore SA1001 // Commas should be spaced correctly return source.ReplaceTemplate(dict); } From 760ff1910b9f2c14c6e34d1b78290d9d68833aa0 Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Mon, 21 Aug 2023 09:38:30 +0100 Subject: [PATCH 08/28] (build) Fix yaml syntax Remove the usage of ' which are not required when passing an array of versions, only when using a single version. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e2556efa..f7052178 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,8 +30,8 @@ jobs: uses: actions/setup-dotnet@v3 with: dotnet-version: | - '3.1.x' - '5.0.x' + 3.1.x + 5.0.x - name: Cache Tools uses: actions/cache@v2 From 013ea644a1b92930e0edcb03b2472dee5e249750 Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Mon, 21 Aug 2023 10:45:47 +0100 Subject: [PATCH 09/28] (build) Force building of 0.14.0 Even though 0.13.0 has been released, GitVersion is still asserting 0.13.0 as the base version. Let's force a bump to explicitly 0.14.0. --- gitversion.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 gitversion.yml diff --git a/gitversion.yml b/gitversion.yml new file mode 100644 index 00000000..f5a04cc7 --- /dev/null +++ b/gitversion.yml @@ -0,0 +1 @@ +next-version: 0.14.0 \ No newline at end of file From cea2a4372f60c2f2a0e524f1e199f47cb25ef995 Mon Sep 17 00:00:00 2001 From: jibedoubleve Date: Mon, 2 Jan 2023 19:34:24 +0100 Subject: [PATCH 10/28] (#454) Fix NullReferenceException on release not found --- src/GitReleaseManager.Core/VcsService.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/GitReleaseManager.Core/VcsService.cs b/src/GitReleaseManager.Core/VcsService.cs index 8d7a6f46..a101e2e3 100644 --- a/src/GitReleaseManager.Core/VcsService.cs +++ b/src/GitReleaseManager.Core/VcsService.cs @@ -101,7 +101,7 @@ private async Task CreateReleaseAsync(string owner, string repository, await _vcsProvider.UpdateReleaseAsync(owner, repository, release).ConfigureAwait(false); } - await AddAssetsAsync(owner, repository, tagName, assets).ConfigureAwait(false); + await AddAssetsAsync(owner, repository, tagName, assets, release).ConfigureAwait(false); return release; } @@ -127,13 +127,15 @@ public async Task DiscardReleaseAsync(string owner, string repository, string ta } } - public async Task AddAssetsAsync(string owner, string repository, string tagName, IList assets) + public async Task AddAssetsAsync(string owner, string repository, string tagName, IList assets) => await AddAssetsAsync(owner, repository, tagName, assets, null); + + private async Task AddAssetsAsync(string owner, string repository, string tagName, IList assets, Release currentRelease) { if (assets?.Any() == true) { try { - var release = await _vcsProvider.GetReleaseAsync(owner, repository, tagName).ConfigureAwait(false); + var release = currentRelease ?? await _vcsProvider.GetReleaseAsync(owner, repository, tagName).ConfigureAwait(false); foreach (var asset in assets) { From ecf921cc6056f6515169a170306682208ddb3b4a Mon Sep 17 00:00:00 2001 From: jibedoubleve Date: Mon, 2 Jan 2023 19:35:36 +0100 Subject: [PATCH 11/28] (#454) Create test --- .../VcsServiceTests.cs | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/src/GitReleaseManager.Core.Tests/VcsServiceTests.cs b/src/GitReleaseManager.Core.Tests/VcsServiceTests.cs index 09889a8f..202c370e 100644 --- a/src/GitReleaseManager.Core.Tests/VcsServiceTests.cs +++ b/src/GitReleaseManager.Core.Tests/VcsServiceTests.cs @@ -321,6 +321,45 @@ await _vcsProvider.Received(1).CreateReleaseAsync(OWNER, REPOSITORY, Arg.Is(), Arg.Any()); } + [Test] + public async Task Should_Create_Release_From_Milestone_With_Assets() + { + var release = new Release { Assets = new List() }; + + var assetsCount = _assets.Count; + + _releaseNotesBuilder.BuildReleaseNotes(OWNER, REPOSITORY, MILESTONE_TITLE, ReleaseTemplates.DEFAULT_NAME) + .Returns(Task.FromResult(RELEASE_NOTES)); + + _vcsProvider.GetReleaseAsync(OWNER, REPOSITORY, MILESTONE_TITLE) + .Returns(Task.FromResult(null)); + + _vcsProvider.CreateReleaseAsync(OWNER, REPOSITORY, Arg.Any()) + .Returns(Task.FromResult(release)); + + var result = await _vcsService.CreateReleaseFromMilestoneAsync( + OWNER, + REPOSITORY, + MILESTONE_TITLE, + MILESTONE_TITLE, + null, + _assets, + false, + null + ).ConfigureAwait(false); + result.ShouldBeSameAs(release); + + await _releaseNotesBuilder.Received(1).BuildReleaseNotes(OWNER, REPOSITORY, MILESTONE_TITLE, ReleaseTemplates.DEFAULT_NAME).ConfigureAwait(false); + await _vcsProvider.Received(1).GetReleaseAsync(OWNER, REPOSITORY, MILESTONE_TITLE).ConfigureAwait(false); + await _vcsProvider.Received(1).CreateReleaseAsync(OWNER, REPOSITORY, Arg.Is(o => + o.Body == RELEASE_NOTES && + o.Name == MILESTONE_TITLE && + o.TagName == MILESTONE_TITLE)).ConfigureAwait(false); + + _logger.Received(1).Verbose(Arg.Any(), MILESTONE_TITLE, OWNER, REPOSITORY); + _logger.Received(1).Debug(Arg.Any(), Arg.Any()); + } + [Test] public async Task Should_Create_Release_From_Milestone_Using_Template_File() { From 55383b1bd47c633ab1715e72a0e7e1196c950e05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 12:21:15 +0000 Subject: [PATCH 12/28] Bump ApprovalTests from 5.7.1 to 5.8.0 in /src Bumps [ApprovalTests](https://github.com/approvals/ApprovalTests.Net) from 5.7.1 to 5.8.0. - [Release notes](https://github.com/approvals/ApprovalTests.Net/releases) - [Commits](https://github.com/approvals/ApprovalTests.Net/compare/5.7.1...5.8.0) --- updated-dependencies: - dependency-name: ApprovalTests dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../GitReleaseManager.Core.Tests.csproj | 4 ++-- src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj b/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj index 850c2169..0541e8e6 100644 --- a/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj +++ b/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj @@ -1,4 +1,4 @@ - + 8.0 net472;netcoreapp3.1;net6.0 @@ -18,7 +18,7 @@ all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj b/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj index b2fe3f35..38c0c400 100644 --- a/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj +++ b/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj @@ -18,7 +18,7 @@ all - + runtime; build; native; contentfiles; analyzers; buildtransitive all From 4c50e925da94f0b51bf201573d017b4d9b5d6bf2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 12:32:03 +0000 Subject: [PATCH 13/28] Bump Roslynator.Analyzers from 4.0.2 to 4.4.0 in /src Bumps [Roslynator.Analyzers](https://github.com/josefpihrt/roslynator) from 4.0.2 to 4.4.0. - [Release notes](https://github.com/josefpihrt/roslynator/releases) - [Changelog](https://github.com/JosefPihrt/Roslynator/blob/main/ChangeLog.md) - [Commits](https://github.com/josefpihrt/roslynator/compare/v4.0.2...v4.4.0) --- updated-dependencies: - dependency-name: Roslynator.Analyzers dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 7865b3a2..9bd7858f 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -27,7 +27,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all - + All From 4c04990e07a0fd77b3252a12256e8b99f831e04c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 12:40:26 +0000 Subject: [PATCH 14/28] Bump coverlet.msbuild from 3.1.1 to 6.0.0 in /src Bumps [coverlet.msbuild](https://github.com/coverlet-coverage/coverlet) from 3.1.1 to 6.0.0. - [Release notes](https://github.com/coverlet-coverage/coverlet/releases) - [Commits](https://github.com/coverlet-coverage/coverlet/commits/v6.0.0) --- updated-dependencies: - dependency-name: coverlet.msbuild dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .../GitReleaseManager.Core.Tests.csproj | 2 +- .../GitReleaseManager.IntegrationTests.csproj | 4 ++-- src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj b/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj index 0541e8e6..9426e39d 100644 --- a/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj +++ b/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj @@ -13,7 +13,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj b/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj index ec77e555..ef0c2369 100644 --- a/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj +++ b/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj @@ -1,4 +1,4 @@ - + 8.0 net472;netcoreapp3.1;net6.0 @@ -13,7 +13,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj b/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj index 38c0c400..af66668a 100644 --- a/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj +++ b/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj @@ -13,7 +13,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all From 44fe13fb0edf4c335c6f42b033d57ddf6d3c2ca1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 12:51:56 +0000 Subject: [PATCH 15/28] Bump CommandLineParser from 2.8.0 to 2.9.1 in /src Bumps [CommandLineParser](https://github.com/commandlineparser/commandline) from 2.8.0 to 2.9.1. - [Release notes](https://github.com/commandlineparser/commandline/releases) - [Changelog](https://github.com/commandlineparser/commandline/blob/master/CHANGELOG.md) - [Commits](https://github.com/commandlineparser/commandline/compare/2.8.0...v2.9.1) --- updated-dependencies: - dependency-name: CommandLineParser dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj | 2 +- src/GitReleaseManager.Core/GitReleaseManager.Core.csproj | 2 +- src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj b/src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj index 59676e72..119151bd 100644 --- a/src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj +++ b/src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/GitReleaseManager.Core/GitReleaseManager.Core.csproj b/src/GitReleaseManager.Core/GitReleaseManager.Core.csproj index 163e47a2..93724ce4 100644 --- a/src/GitReleaseManager.Core/GitReleaseManager.Core.csproj +++ b/src/GitReleaseManager.Core/GitReleaseManager.Core.csproj @@ -17,7 +17,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj b/src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj index cd7e0439..ce58693c 100644 --- a/src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj +++ b/src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj @@ -31,7 +31,7 @@ - + From 47e50b1c280bbcc9986fad026a7ab4797edc6f4d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 13:04:22 +0000 Subject: [PATCH 16/28] Bump NUnit from 3.13.2 to 3.13.3 in /src Bumps [NUnit](https://github.com/nunit/nunit) from 3.13.2 to 3.13.3. - [Release notes](https://github.com/nunit/nunit/releases) - [Changelog](https://github.com/nunit/nunit/blob/v3.13.3/CHANGES.md) - [Commits](https://github.com/nunit/nunit/compare/v3.13.2...v3.13.3) --- updated-dependencies: - dependency-name: NUnit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../GitReleaseManager.Core.Tests.csproj | 2 +- .../GitReleaseManager.IntegrationTests.csproj | 2 +- src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj b/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj index 9426e39d..0cd4533b 100644 --- a/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj +++ b/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj @@ -24,7 +24,7 @@ all - + diff --git a/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj b/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj index ef0c2369..3b19108b 100644 --- a/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj +++ b/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj @@ -21,7 +21,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all - + diff --git a/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj b/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj index af66668a..360ef82e 100644 --- a/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj +++ b/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj @@ -24,7 +24,7 @@ all - + From ad501915eafac688df1da2ea41e7a0d53bccfee8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 13:13:05 +0000 Subject: [PATCH 17/28] Bump IDisposableAnalyzers from 4.0.1 to 4.0.6 in /src Bumps [IDisposableAnalyzers](https://github.com/DotNetAnalyzers/IDisposableAnalyzers) from 4.0.1 to 4.0.6. - [Changelog](https://github.com/DotNetAnalyzers/IDisposableAnalyzers/blob/master/RELEASE_NOTES.md) - [Commits](https://github.com/DotNetAnalyzers/IDisposableAnalyzers/commits) --- updated-dependencies: - dependency-name: IDisposableAnalyzers dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- src/Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 9bd7858f..f624fb11 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -19,7 +19,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive From 8f4437495c351e0c9e15a3a410eddcb62e18f492 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 13:58:19 +0000 Subject: [PATCH 18/28] Bump Scriban from 5.0.0 to 5.7.0 in /src Bumps [Scriban](https://github.com/scriban/scriban) from 5.0.0 to 5.7.0. - [Release notes](https://github.com/scriban/scriban/releases) - [Changelog](https://github.com/scriban/scriban/blob/master/changelog.md) - [Commits](https://github.com/scriban/scriban/compare/5.0.0...5.7.0) --- updated-dependencies: - dependency-name: Scriban dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/GitReleaseManager.Core/GitReleaseManager.Core.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GitReleaseManager.Core/GitReleaseManager.Core.csproj b/src/GitReleaseManager.Core/GitReleaseManager.Core.csproj index 93724ce4..c395b6a9 100644 --- a/src/GitReleaseManager.Core/GitReleaseManager.Core.csproj +++ b/src/GitReleaseManager.Core/GitReleaseManager.Core.csproj @@ -24,7 +24,7 @@ all - + From 8cf8f5643457d648280e2d64775058fab89d57a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 14:53:56 +0000 Subject: [PATCH 19/28] Bump Microsoft.NET.Test.Sdk from 17.0.0 to 17.7.1 in /src Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.0.0 to 17.7.1. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.0.0...v17.7.1) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../GitReleaseManager.Core.Tests.csproj | 2 +- .../GitReleaseManager.IntegrationTests.csproj | 2 +- src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj b/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj index 0cd4533b..1f7b23f6 100644 --- a/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj +++ b/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj @@ -17,7 +17,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj b/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj index 3b19108b..50a40ed3 100644 --- a/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj +++ b/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj @@ -23,7 +23,7 @@ - + diff --git a/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj b/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj index 360ef82e..6c0a3094 100644 --- a/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj +++ b/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj @@ -17,7 +17,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive From 20e24aace06b18e9562e48ac3d206a45329678ad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 19:30:26 +0000 Subject: [PATCH 20/28] Bump NSubstitute from 4.3.0 to 5.0.0 in /src Bumps NSubstitute from 4.3.0 to 5.0.0. --- updated-dependencies: - dependency-name: NSubstitute dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .../GitReleaseManager.Core.Tests.csproj | 2 +- src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj b/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj index 1f7b23f6..51d449f5 100644 --- a/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj +++ b/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj @@ -23,7 +23,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all - + diff --git a/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj b/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj index 6c0a3094..8baeeb34 100644 --- a/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj +++ b/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj @@ -23,7 +23,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all - + From 71e47d89ca344ded60be7410b6ad8e3b91d86139 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 19:55:24 +0000 Subject: [PATCH 21/28] Bump Microsoft.CodeAnalysis.NetAnalyzers from 6.0.0 to 7.0.3 in /src Bumps [Microsoft.CodeAnalysis.NetAnalyzers](https://github.com/dotnet/roslyn-analyzers) from 6.0.0 to 7.0.3. - [Release notes](https://github.com/dotnet/roslyn-analyzers/releases) - [Changelog](https://github.com/dotnet/roslyn-analyzers/blob/main/PostReleaseActivities.md) - [Commits](https://github.com/dotnet/roslyn-analyzers/commits) --- updated-dependencies: - dependency-name: Microsoft.CodeAnalysis.NetAnalyzers dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- src/Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Directory.Build.props b/src/Directory.Build.props index f624fb11..0c06577b 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -14,7 +14,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive From 8a0b1b530210aa86e390ec55a555bbbcf86c0565 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Aug 2023 06:15:39 +0000 Subject: [PATCH 22/28] Bump TextCopy from 6.1.0 to 6.2.1 in /src Bumps [TextCopy](https://github.com/CopyText/TextCopy) from 6.1.0 to 6.2.1. - [Release notes](https://github.com/CopyText/TextCopy/releases) - [Commits](https://github.com/CopyText/TextCopy/commits/6.2.1) --- updated-dependencies: - dependency-name: TextCopy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../GitReleaseManager.IntegrationTests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj b/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj index 50a40ed3..58510c5a 100644 --- a/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj +++ b/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj @@ -26,6 +26,6 @@ - + \ No newline at end of file From 3668dce170158ce5a68582a4cd6b6b6df25d65fd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Aug 2023 06:26:53 +0000 Subject: [PATCH 23/28] Bump Microsoft.Extensions.DependencyInjection in /src Bumps [Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/runtime) from 6.0.0 to 7.0.0. - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/compare/v6.0.0...v7.0.0) --- updated-dependencies: - dependency-name: Microsoft.Extensions.DependencyInjection dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj | 2 +- src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj b/src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj index 119151bd..029ba295 100644 --- a/src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj +++ b/src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj @@ -15,7 +15,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj b/src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj index ce58693c..3e26096d 100644 --- a/src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj +++ b/src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj @@ -33,7 +33,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all From 225d321cb789d67de10ef325f7ef357a4615e833 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Aug 2023 06:26:40 +0000 Subject: [PATCH 24/28] Bump Shouldly from 4.0.3 to 4.2.1 in /src Bumps [Shouldly](https://github.com/shouldly/shouldly) from 4.0.3 to 4.2.1. - [Release notes](https://github.com/shouldly/shouldly/releases) - [Changelog](https://github.com/shouldly/shouldly/blob/master/BREAKING%20CHANGES.txt) - [Commits](https://github.com/shouldly/shouldly/compare/v4.0.3...4.2.1) --- updated-dependencies: - dependency-name: Shouldly dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../GitReleaseManager.Core.Tests.csproj | 2 +- .../GitReleaseManager.IntegrationTests.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj b/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj index 51d449f5..58db91b2 100644 --- a/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj +++ b/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj @@ -27,6 +27,6 @@ - + \ No newline at end of file diff --git a/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj b/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj index 58510c5a..339cb8a4 100644 --- a/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj +++ b/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj @@ -25,7 +25,7 @@ - + \ No newline at end of file From 31c9d41c89ec6ddf201392e2fd3c28bccced5a9e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Aug 2023 06:39:47 +0000 Subject: [PATCH 25/28] Bump Serilog.Sinks.Console from 4.0.1 to 4.1.0 in /src Bumps [Serilog.Sinks.Console](https://github.com/serilog/serilog-sinks-console) from 4.0.1 to 4.1.0. - [Release notes](https://github.com/serilog/serilog-sinks-console/releases) - [Commits](https://github.com/serilog/serilog-sinks-console/compare/v4.0.1...v4.1.0) --- updated-dependencies: - dependency-name: Serilog.Sinks.Console dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj | 2 +- .../GitReleaseManager.IntegrationTests.csproj | 2 ++ src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj b/src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj index 029ba295..5f00b798 100644 --- a/src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj +++ b/src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj @@ -21,7 +21,7 @@ all - + diff --git a/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj b/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj index 339cb8a4..6ba4a018 100644 --- a/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj +++ b/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj @@ -26,6 +26,8 @@ + + \ No newline at end of file diff --git a/src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj b/src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj index 3e26096d..da152902 100644 --- a/src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj +++ b/src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj @@ -39,7 +39,7 @@ all - + From 8c771399a46aedc38b5e7afd082320daecfbe280 Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Tue, 22 Aug 2023 09:56:23 +0100 Subject: [PATCH 26/28] (maint) Update PackageReference For Destructurama.Attributed 3.0.0 -> 3.1.0 --- src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj | 2 +- src/GitReleaseManager.Core/GitReleaseManager.Core.csproj | 2 +- src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj b/src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj index 5f00b798..c2b810c3 100644 --- a/src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj +++ b/src/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj @@ -14,7 +14,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/GitReleaseManager.Core/GitReleaseManager.Core.csproj b/src/GitReleaseManager.Core/GitReleaseManager.Core.csproj index c395b6a9..39cf63ee 100644 --- a/src/GitReleaseManager.Core/GitReleaseManager.Core.csproj +++ b/src/GitReleaseManager.Core/GitReleaseManager.Core.csproj @@ -18,7 +18,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj b/src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj index da152902..d4d31ecd 100644 --- a/src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj +++ b/src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj @@ -32,7 +32,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive From 87471d2c0b4f5a8caedd40d0cb65d2cf10bc77eb Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Tue, 22 Aug 2023 09:57:45 +0100 Subject: [PATCH 27/28] (maint) Update PackageReference For NUnit3TestAdapter 4.2.1 -> 4.5.0 --- .../GitReleaseManager.Core.Tests.csproj | 2 +- .../GitReleaseManager.IntegrationTests.csproj | 2 +- src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj | 2 +- src/GitReleaseManager.sln | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj b/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj index 58db91b2..5a2a642e 100644 --- a/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj +++ b/src/GitReleaseManager.Core.Tests/GitReleaseManager.Core.Tests.csproj @@ -25,7 +25,7 @@ - + diff --git a/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj b/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj index 6ba4a018..86fc2bfc 100644 --- a/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj +++ b/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj @@ -22,7 +22,7 @@ all - + diff --git a/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj b/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj index 8baeeb34..ec842eac 100644 --- a/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj +++ b/src/GitReleaseManager.Tests/GitReleaseManager.Tests.csproj @@ -25,7 +25,7 @@ - + \ No newline at end of file diff --git a/src/GitReleaseManager.sln b/src/GitReleaseManager.sln index e4b67429..a92435e5 100644 --- a/src/GitReleaseManager.sln +++ b/src/GitReleaseManager.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.29519.181 +# Visual Studio Version 17 +VisualStudioVersion = 17.6.33801.468 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitReleaseManager.Tests", "GitReleaseManager.Tests\GitReleaseManager.Tests.csproj", "{FAD045A3-CF63-48CA-BA49-8F4D79E3EF4F}" EndProject From 48b6fc1c7befbf97f670000cedfffecb78e7a99c Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Tue, 22 Aug 2023 10:03:30 +0100 Subject: [PATCH 28/28] (maint) Consolidate and remove duplicates Not sure how this happened, but there was a duplicate packagerefernce for Shouldly, which has been removed, as well as for Serilog.Sinks.Console. --- .../GitReleaseManager.IntegrationTests.csproj | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj b/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj index 86fc2bfc..da514e15 100644 --- a/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj +++ b/src/GitReleaseManager.IntegrationTests/GitReleaseManager.IntegrationTests.csproj @@ -24,10 +24,8 @@ - - \ No newline at end of file