Skip to content
This repository was archived by the owner on Feb 28, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion NeosModLoader/ModLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace NeosModLoader
{
public class ModLoader
{
internal const string VERSION_CONSTANT = "1.11.2";
internal const string VERSION_CONSTANT = "1.11.3";
/// <summary>
/// NeosModLoader's version
/// </summary>
Expand Down
5 changes: 5 additions & 0 deletions NeosModLoader/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.ComponentModel;
using System.Reflection;
using System.Runtime.InteropServices;

Expand Down Expand Up @@ -33,3 +34,7 @@
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion(NeosModLoader.ModLoader.VERSION_CONSTANT)]
[assembly: AssemblyFileVersion(NeosModLoader.ModLoader.VERSION_CONSTANT)]

// prevent PostX from modifying my assembly, as it doesn't need anything done to it
// this keeps PostX from overwriting my AssemblyVersionAttribute
[module: Description("POSTX_PROCESSED")]