diff --git a/AudicaMod/Properties/AssemblyInfo.cs b/AudicaMod/Properties/AssemblyInfo.cs index c15c287..3f5258f 100644 --- a/AudicaMod/Properties/AssemblyInfo.cs +++ b/AudicaMod/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany(GunExtras.BuildInfo.Company)] -[assembly: AssemblyProduct(GunExtras.BuildInfo.Name)] +[assembly: AssemblyProduct("GunExtras")] [assembly: AssemblyCopyright("Created by " + GunExtras.BuildInfo.Author)] [assembly: AssemblyTrademark(GunExtras.BuildInfo.Company)] [assembly: AssemblyCulture("")] @@ -23,4 +23,4 @@ // Create and Setup a MelonModGame to mark a Mod as Universal or Compatible with specific Games. // If no MelonModGameAttribute is found or any of the Values for any MelonModGame on the Mod is null or empty it will be assumed the Mod is Universal. // Values for MelonModGame can be found in the Game's app.info file or printed at the top of every log directly beneath the Unity version. -[assembly: MelonGame("Harmonix Music Systems, Inc.", "Audica")] \ No newline at end of file +[assembly: MelonGame("Harmonix Music Systems, Inc.", "Audica")] diff --git a/AudicaMod/src/GunExtras.cs b/AudicaMod/src/GunExtras.cs index 22cd10a..19e4947 100644 --- a/AudicaMod/src/GunExtras.cs +++ b/AudicaMod/src/GunExtras.cs @@ -12,7 +12,7 @@ public static class BuildInfo public const string Name = "Gun Extras"; // Name of the Mod. (MUST BE SET) public const string Author = "MeepsKitten"; // Author of the Mod. (Set as null if none) public const string Company = null; // Company that made the Mod. (Set as null if none) - public const string Version = "1.0"; // Version of the Mod. (MUST BE SET) + public const string Version = "1.0.2"; // Version of the Mod. (MUST BE SET) public const string DownloadLink = null; // Download Link for the Mod. (Set as null if none) }