From fad187d08fcc1bfeb964c78ec81380e4879af294 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Aug 2024 19:43:50 +0000 Subject: [PATCH 1/5] Bump ThisAssembly from 1.4.3 to 1.5.0 Bumps [ThisAssembly](https://github.com/devlooped/ThisAssembly) from 1.4.3 to 1.5.0. - [Release notes](https://github.com/devlooped/ThisAssembly/releases) - [Changelog](https://github.com/devlooped/ThisAssembly/blob/main/changelog.md) - [Commits](https://github.com/devlooped/ThisAssembly/compare/v1.4.3...v1.5.0) --- updated-dependencies: - dependency-name: ThisAssembly dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/Common.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Common.props b/src/Common.props index ada665cd..2b492d01 100644 --- a/src/Common.props +++ b/src/Common.props @@ -58,7 +58,7 @@ - + From 135767bc0c3b8caafcc06144dd92cc2baa293a47 Mon Sep 17 00:00:00 2001 From: Niklas Mollenhauer Date: Tue, 3 Sep 2024 14:56:22 +0200 Subject: [PATCH 2/5] Use ThisAssembly.Git --- src/Common.props | 1 + src/HolzShots.Core/LibraryInformation.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Common.props b/src/Common.props index 2b492d01..9f1dd21c 100644 --- a/src/Common.props +++ b/src/Common.props @@ -59,6 +59,7 @@ + diff --git a/src/HolzShots.Core/LibraryInformation.cs b/src/HolzShots.Core/LibraryInformation.cs index 44126e67..3fffb732 100644 --- a/src/HolzShots.Core/LibraryInformation.cs +++ b/src/HolzShots.Core/LibraryInformation.cs @@ -11,7 +11,7 @@ public static class LibraryInformation public static readonly DateTime VersionDate = DateTime.ParseExact(ThisAssembly.Constants.BuildDate, "yyyy-MM-dd", System.Globalization.CultureInfo.InvariantCulture); public const string SiteUrl = ThisAssembly.Constants.Website; - public const string SourceUrl = ThisAssembly.Metadata.RepositoryUrl; + public const string SourceUrl = ThisAssembly.Git.RepositoryUrl; public const string IssuesUrl = SourceUrl + "/issues"; public const string LicenseUrl = SourceUrl + "/blob/master/LICENSE"; From 4bc111b01a1169b93ad9dc4315ea1383775bc4ab Mon Sep 17 00:00:00 2001 From: Niklas Mollenhauer Date: Tue, 3 Sep 2024 15:03:21 +0200 Subject: [PATCH 3/5] Revert "Use ThisAssembly.Git" This reverts commit 135767bc0c3b8caafcc06144dd92cc2baa293a47. --- src/Common.props | 1 - src/HolzShots.Core/LibraryInformation.cs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Common.props b/src/Common.props index 9f1dd21c..2b492d01 100644 --- a/src/Common.props +++ b/src/Common.props @@ -59,7 +59,6 @@ - diff --git a/src/HolzShots.Core/LibraryInformation.cs b/src/HolzShots.Core/LibraryInformation.cs index 3fffb732..44126e67 100644 --- a/src/HolzShots.Core/LibraryInformation.cs +++ b/src/HolzShots.Core/LibraryInformation.cs @@ -11,7 +11,7 @@ public static class LibraryInformation public static readonly DateTime VersionDate = DateTime.ParseExact(ThisAssembly.Constants.BuildDate, "yyyy-MM-dd", System.Globalization.CultureInfo.InvariantCulture); public const string SiteUrl = ThisAssembly.Constants.Website; - public const string SourceUrl = ThisAssembly.Git.RepositoryUrl; + public const string SourceUrl = ThisAssembly.Metadata.RepositoryUrl; public const string IssuesUrl = SourceUrl + "/issues"; public const string LicenseUrl = SourceUrl + "/blob/master/LICENSE"; From 01df8d961a1949a14e7a78cd57789f103793c3fc Mon Sep 17 00:00:00 2001 From: Niklas Mollenhauer Date: Tue, 3 Sep 2024 15:05:10 +0200 Subject: [PATCH 4/5] Add ProjectProperty --- src/Common.props | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Common.props b/src/Common.props index 2b492d01..c41ff86b 100644 --- a/src/Common.props +++ b/src/Common.props @@ -53,6 +53,9 @@ + + + From ba81f3737b31106bbb998099f9f42ce9a6035297 Mon Sep 17 00:00:00 2001 From: Niklas Mollenhauer Date: Tue, 3 Sep 2024 15:14:50 +0200 Subject: [PATCH 5/5] Metadata -> Project --- src/HolzShots.Core/LibraryInformation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HolzShots.Core/LibraryInformation.cs b/src/HolzShots.Core/LibraryInformation.cs index 44126e67..88dda32c 100644 --- a/src/HolzShots.Core/LibraryInformation.cs +++ b/src/HolzShots.Core/LibraryInformation.cs @@ -11,7 +11,7 @@ public static class LibraryInformation public static readonly DateTime VersionDate = DateTime.ParseExact(ThisAssembly.Constants.BuildDate, "yyyy-MM-dd", System.Globalization.CultureInfo.InvariantCulture); public const string SiteUrl = ThisAssembly.Constants.Website; - public const string SourceUrl = ThisAssembly.Metadata.RepositoryUrl; + public const string SourceUrl = ThisAssembly.Project.RepositoryUrl; public const string IssuesUrl = SourceUrl + "/issues"; public const string LicenseUrl = SourceUrl + "/blob/master/LICENSE";