Skip to content
This repository was archived by the owner on Feb 28, 2024. It is now read-only.

Commit 68ad5fb

Browse files
authored
Merge pull request #47 from neos-modding-group/no-postx
Prevent PostX processing of the NML assembly
2 parents 6b0055c + b82600e commit 68ad5fb

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

NeosModLoader/ModLoader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace NeosModLoader
1010
{
1111
public class ModLoader
1212
{
13-
internal const string VERSION_CONSTANT = "1.11.2";
13+
internal const string VERSION_CONSTANT = "1.11.3";
1414
/// <summary>
1515
/// NeosModLoader's version
1616
/// </summary>

NeosModLoader/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
using System.ComponentModel;
12
using System.Reflection;
23
using System.Runtime.InteropServices;
34

@@ -33,3 +34,7 @@
3334
// [assembly: AssemblyVersion("1.0.*")]
3435
[assembly: AssemblyVersion(NeosModLoader.ModLoader.VERSION_CONSTANT)]
3536
[assembly: AssemblyFileVersion(NeosModLoader.ModLoader.VERSION_CONSTANT)]
37+
38+
// prevent PostX from modifying my assembly, as it doesn't need anything done to it
39+
// this keeps PostX from overwriting my AssemblyVersionAttribute
40+
[module: Description("POSTX_PROCESSED")]

0 commit comments

Comments
 (0)