Skip to content
This repository has been archived by the owner on Dec 30, 2024. It is now read-only.

Commit

Permalink
v3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Chasmical committed Aug 29, 2021
1 parent 9bdf371 commit b0f60ed
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 42 deletions.
19 changes: 3 additions & 16 deletions RogueLibsCore/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand All @@ -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")]
6 changes: 3 additions & 3 deletions RogueLibsCore/RogueLibs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ static RogueLibs()
/// </summary>
public const string Name = "RogueLibsCore";

internal const string AssemblyVersion = "3.1.1.0";
internal const string AssemblyVersion = "3.1.2.0";
/// <summary>
/// <para>Version of RogueLibs that the current assembly is compiled with.</para>
/// </summary>
public const string CompiledVersion = "3.1.1";
public const string CompiledVersion = "3.1.2";
/// <summary>
/// <para>Semantic version of RogueLibs that the current assembly is compiled with. Don't use it in BepInPlugin.</para>
/// </summary>
public const string CompiledSemanticVersion = "3.1.1";
public const string CompiledSemanticVersion = "3.1.2";

/// <summary>
/// <para>Currently installed and running version of RogueLibs.</para>
Expand Down
35 changes: 12 additions & 23 deletions RogueLibsPatcher/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
6 changes: 6 additions & 0 deletions RogueLibsPatcher/RogueLibsPatcher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,11 @@
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\RogueLibsCore\RogueLibsCore.csproj">
<Project>{43a221f2-a56c-4f59-8c3c-828de75259c4}</Project>
<Name>RogueLibsCore</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

0 comments on commit b0f60ed

Please sign in to comment.