This commit is contained in:
NotAKidoS 2023-02-02 13:02:41 -06:00
parent 24d8c6a3ec
commit 65d325d4fd
11 changed files with 277 additions and 109 deletions

View file

@ -1,4 +1,4 @@
using Blackout.Properties;
using NAK.Melons.Blackout.Properties;
using MelonLoader;
using System.Reflection;
@ -6,13 +6,13 @@ using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(Blackout))]
[assembly: AssemblyTitle(nameof(NAK.Melons.Blackout))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(Blackout))]
[assembly: AssemblyProduct(nameof(NAK.Melons.Blackout))]
[assembly: MelonInfo(
typeof(Blackout.Blackout),
nameof(Blackout),
typeof(NAK.Melons.Blackout.Blackout),
nameof(NAK.Melons.Blackout),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/Blackout"
@ -21,10 +21,11 @@ using System.Reflection;
[assembly: MelonGame("Alpha Blend Interactive", "ChilloutVR")]
[assembly: MelonPlatform(MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)]
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
[assembly: MelonOptionalDependencies("UIExpansionKit", "BTKUILib")]
namespace Blackout.Properties;
namespace NAK.Melons.Blackout.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "1.0.4";
public const string Version = "2.0.0";
public const string Author = "NotAKidoS";
}