From 3d74277e5c2999f78ed2ad85c506ca7257c476fe Mon Sep 17 00:00:00 2001 From: NotAKidoS <37721153+NotAKidOnSteam@users.noreply.github.com> Date: Thu, 9 Feb 2023 20:03:11 -0600 Subject: [PATCH] fix namespace --- MenuScalePatch/Properties/AssemblyInfo.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/MenuScalePatch/Properties/AssemblyInfo.cs b/MenuScalePatch/Properties/AssemblyInfo.cs index 8323208..a3d3264 100644 --- a/MenuScalePatch/Properties/AssemblyInfo.cs +++ b/MenuScalePatch/Properties/AssemblyInfo.cs @@ -1,18 +1,18 @@ using MelonLoader; -using MenuScalePatch.Properties; +using NAK.Melons.MenuScalePatch.Properties; using System.Reflection; [assembly: AssemblyVersion(AssemblyInfoParams.Version)] [assembly: AssemblyFileVersion(AssemblyInfoParams.Version)] [assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)] -[assembly: AssemblyTitle(nameof(MenuScalePatch))] +[assembly: AssemblyTitle(nameof(NAK.Melons.MenuScalePatch))] [assembly: AssemblyCompany(AssemblyInfoParams.Author)] -[assembly: AssemblyProduct(nameof(MenuScalePatch))] +[assembly: AssemblyProduct(nameof(NAK.Melons.MenuScalePatch))] [assembly: MelonInfo( typeof(NAK.Melons.MenuScalePatch.MenuScalePatch), - nameof(MenuScalePatch), + nameof(NAK.Melons.MenuScalePatch), AssemblyInfoParams.Version, AssemblyInfoParams.Author, downloadLink: "https://github.com/NotAKidOnSteam/MenuScalePatch" @@ -22,7 +22,7 @@ using System.Reflection; [assembly: MelonPlatform(MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] [assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)] -namespace MenuScalePatch.Properties; +namespace NAK.Melons.MenuScalePatch.Properties; internal static class AssemblyInfoParams { public const string Version = "4.2.1";