From fd37f8cfd496839aeb08ffdf7ac11c92305b5be1 Mon Sep 17 00:00:00 2001 From: miku-666 <74728189+NessieHax@users.noreply.github.com> Date: Wed, 3 May 2023 16:50:18 +0200 Subject: [PATCH] Changed visibility of CommitInfo and ApplicationBuildInfo to internal --- PCK-Studio/Internals/ApplicationBuildInfo.cs | 2 +- PCK-Studio/Internals/CommitInfo.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PCK-Studio/Internals/ApplicationBuildInfo.cs b/PCK-Studio/Internals/ApplicationBuildInfo.cs index 54c29118..acd9f6e8 100644 --- a/PCK-Studio/Internals/ApplicationBuildInfo.cs +++ b/PCK-Studio/Internals/ApplicationBuildInfo.cs @@ -21,7 +21,7 @@ using System.Reflection; namespace PckStudio.Internal { - static class ApplicationBuildInfo + static internal class ApplicationBuildInfo { // this is to specify which build release this is. This is manually updated for now // TODO: add different chars for different configurations diff --git a/PCK-Studio/Internals/CommitInfo.cs b/PCK-Studio/Internals/CommitInfo.cs index 47ca025e..1ccfe3e0 100644 --- a/PCK-Studio/Internals/CommitInfo.cs +++ b/PCK-Studio/Internals/CommitInfo.cs @@ -20,7 +20,7 @@ using System.Reflection; namespace PckStudio.Internal { - static class CommitInfo + static internal class CommitInfo { private static string _branchName = null; private static string _commitHash = null;