diff --git a/RogueLibsCore/Properties/AssemblyInfo.cs b/RogueLibsCore/Properties/AssemblyInfo.cs
index 950198b4f..5b389a0ec 100644
--- a/RogueLibsCore/Properties/AssemblyInfo.cs
+++ b/RogueLibsCore/Properties/AssemblyInfo.cs
@@ -2,9 +2,6 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
[assembly: AssemblyTitle("RogueLibsCore")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyCompany("Abbysssal")]
@@ -22,20 +19,10 @@
#endif
[assembly: ComVisible(false)]
-
-[assembly: InternalsVisibleTo("RogueLibsCore.Test")]
-
[assembly: Guid("43a221f2-a56c-4f59-8c3c-828de75259c4")]
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion(RogueLibsCore.RogueLibs.AssemblyVersion)]
[assembly: AssemblyFileVersion(RogueLibsCore.RogueLibs.AssemblyVersion)]
+
+[assembly: InternalsVisibleTo("RogueLibsCore.Test")]
+[assembly: InternalsVisibleTo("RogueLibsPatcher")]
diff --git a/RogueLibsCore/RogueLibs.cs b/RogueLibsCore/RogueLibs.cs
index 2c396856b..fef55227c 100644
--- a/RogueLibsCore/RogueLibs.cs
+++ b/RogueLibsCore/RogueLibs.cs
@@ -31,15 +31,15 @@ static RogueLibs()
///
public const string Name = "RogueLibsCore";
- internal const string AssemblyVersion = "3.1.1.0";
+ internal const string AssemblyVersion = "3.1.2.0";
///
/// Version of RogueLibs that the current assembly is compiled with.
///
- public const string CompiledVersion = "3.1.1";
+ public const string CompiledVersion = "3.1.2";
///
/// Semantic version of RogueLibs that the current assembly is compiled with. Don't use it in BepInPlugin.
///
- public const string CompiledSemanticVersion = "3.1.1";
+ public const string CompiledSemanticVersion = "3.1.2";
///
/// Currently installed and running version of RogueLibs.
diff --git a/RogueLibsPatcher/Properties/AssemblyInfo.cs b/RogueLibsPatcher/Properties/AssemblyInfo.cs
index f248cd8da..6caa8f6e8 100644
--- a/RogueLibsPatcher/Properties/AssemblyInfo.cs
+++ b/RogueLibsPatcher/Properties/AssemblyInfo.cs
@@ -2,35 +2,24 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
[assembly: AssemblyTitle("RogueLibsPatcher")]
[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
+[assembly: AssemblyCompany("Abbysssal")]
[assembly: AssemblyProduct("RogueLibsPatcher")]
-[assembly: AssemblyCopyright("Copyright © 2020")]
+[assembly: AssemblyCopyright("Copyright © 2021")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
+#if DEBUG
+[assembly: AssemblyConfiguration("Debug")]
+#elif RELEASE
+[assembly: AssemblyConfiguration("Release")]
+#else
+[assembly: AssemblyConfiguration("")]
+#endif
-// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: ComVisible(false)]
[assembly: Guid("31ae3c3a-2227-4df9-a3e1-8173a4df70c0")]
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
+[assembly: AssemblyVersion(RogueLibsCore.RogueLibs.AssemblyVersion)]
+[assembly: AssemblyFileVersion(RogueLibsCore.RogueLibs.AssemblyVersion)]
diff --git a/RogueLibsPatcher/RogueLibsPatcher.csproj b/RogueLibsPatcher/RogueLibsPatcher.csproj
index b02ff6eaa..0bad145fe 100644
--- a/RogueLibsPatcher/RogueLibsPatcher.csproj
+++ b/RogueLibsPatcher/RogueLibsPatcher.csproj
@@ -51,5 +51,11 @@
+
+
+ {43a221f2-a56c-4f59-8c3c-828de75259c4}
+ RogueLibsCore
+
+
\ No newline at end of file