From 058d4c5117abbb94b93e2c37bffdf6419c019fcb Mon Sep 17 00:00:00 2001 From: Jon Sagara Date: Fri, 10 Apr 2026 07:35:47 -0700 Subject: [PATCH] Make the ApplicationMetadata constructor internal. --- Directory.Build.props | 2 +- src/Sagara.Core/Infrastructure/ApplicationMetadata.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 8c3b46f..c8a5aa3 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -4,7 +4,7 @@ net8.0;net9.0;net10.0 - 5.3.6 + 5.3.7 5.3.0 5.3.0 Jon Sagara diff --git a/src/Sagara.Core/Infrastructure/ApplicationMetadata.cs b/src/Sagara.Core/Infrastructure/ApplicationMetadata.cs index 1379dfa..945fe65 100644 --- a/src/Sagara.Core/Infrastructure/ApplicationMetadata.cs +++ b/src/Sagara.Core/Infrastructure/ApplicationMetadata.cs @@ -64,7 +64,7 @@ public class ApplicationMetadata /// Any type from the assembly to read the git hash from. /// The IANA time zone identifier to use for the property. /// If null, defaults to "America/Los_Angeles". - public ApplicationMetadata(Type applicationAssemblyType, string? displayTimeZone) + internal ApplicationMetadata(Type applicationAssemblyType, string? displayTimeZone) { Check.ThrowIfNull(applicationAssemblyType);