diff --git a/src/BUTR.CrashReport.Bannerlord.Parser/BUTR.CrashReport.Bannerlord.Parser.csproj b/src/BUTR.CrashReport.Bannerlord.Parser/BUTR.CrashReport.Bannerlord.Parser.csproj
index bc10e09..f77b8e8 100644
--- a/src/BUTR.CrashReport.Bannerlord.Parser/BUTR.CrashReport.Bannerlord.Parser.csproj
+++ b/src/BUTR.CrashReport.Bannerlord.Parser/BUTR.CrashReport.Bannerlord.Parser.csproj
@@ -16,8 +16,8 @@
false
-
-
+
+
@@ -30,8 +30,8 @@
-
-
+
+
diff --git a/src/BUTR.CrashReport.Bannerlord.Source/BUTR.CrashReport.Bannerlord.Source.csproj b/src/BUTR.CrashReport.Bannerlord.Source/BUTR.CrashReport.Bannerlord.Source.csproj
index 772c27d..4768c3a 100644
--- a/src/BUTR.CrashReport.Bannerlord.Source/BUTR.CrashReport.Bannerlord.Source.csproj
+++ b/src/BUTR.CrashReport.Bannerlord.Source/BUTR.CrashReport.Bannerlord.Source.csproj
@@ -42,7 +42,7 @@
-
+
@@ -53,8 +53,8 @@
-
-
+
+
diff --git a/src/BUTR.CrashReport.Bannerlord.Source/CrashReportCreatorHelper.cs b/src/BUTR.CrashReport.Bannerlord.Source/CrashReportCreatorHelper.cs
index 9e7f479..ba784ae 100644
--- a/src/BUTR.CrashReport.Bannerlord.Source/CrashReportCreatorHelper.cs
+++ b/src/BUTR.CrashReport.Bannerlord.Source/CrashReportCreatorHelper.cs
@@ -231,7 +231,7 @@ public virtual bool TryHandlePath(string path, out string anonymizedPath)
return false;
}
- protected static ModuleModel Convert(ModuleInfoExtendedWithMetadata module, bool isManagedByVortex, ICollection assemblies)
+ protected static ModuleModel Convert(ModuleInfoExtendedHelper module, bool isManagedByVortex, ICollection assemblies)
{
var updateInfos = module.UpdateInfo.Split(';').Select(x => x.Split(':') is { Length: 2 } split
? new UpdateInfoModuleOrLoaderPlugin()
diff --git a/src/BUTR.CrashReport.Bannerlord.Source/ModuleInfo.cs b/src/BUTR.CrashReport.Bannerlord.Source/ModuleInfo.cs
index 1b455a8..156e48b 100644
--- a/src/BUTR.CrashReport.Bannerlord.Source/ModuleInfo.cs
+++ b/src/BUTR.CrashReport.Bannerlord.Source/ModuleInfo.cs
@@ -53,7 +53,7 @@ namespace BUTR.CrashReport.Bannerlord
internal class ModuleInfo : IModuleInfo
{
- public ModuleInfoExtendedWithMetadata InternalModuleInfo { get; }
+ public ModuleInfoExtendedHelper InternalModuleInfo { get; }
public string Id => InternalModuleInfo.Id;
public string Version => InternalModuleInfo.Version.ToString();
@@ -61,7 +61,7 @@ internal class ModuleInfo : IModuleInfo
public IEnumerable SubModules => InternalModuleInfo.SubModules.Select(x => new ModuleSubModuleInfo(x));
- public ModuleInfo(ModuleInfoExtendedWithMetadata internalModuleInfo) => InternalModuleInfo = internalModuleInfo;
+ public ModuleInfo(ModuleInfoExtendedHelper internalModuleInfo) => InternalModuleInfo = internalModuleInfo;
}
}
diff --git a/src/BUTR.CrashReport.BepInEx5.Source/BUTR.CrashReport.BepInEx5.Source.csproj b/src/BUTR.CrashReport.BepInEx5.Source/BUTR.CrashReport.BepInEx5.Source.csproj
index 4acd785..5c1461c 100644
--- a/src/BUTR.CrashReport.BepInEx5.Source/BUTR.CrashReport.BepInEx5.Source.csproj
+++ b/src/BUTR.CrashReport.BepInEx5.Source/BUTR.CrashReport.BepInEx5.Source.csproj
@@ -40,7 +40,7 @@
-
+
diff --git a/src/BUTR.CrashReport.BepInEx6.Source/BUTR.CrashReport.BepInEx6.Source.csproj b/src/BUTR.CrashReport.BepInEx6.Source/BUTR.CrashReport.BepInEx6.Source.csproj
index 57f3c5c..42955cd 100644
--- a/src/BUTR.CrashReport.BepInEx6.Source/BUTR.CrashReport.BepInEx6.Source.csproj
+++ b/src/BUTR.CrashReport.BepInEx6.Source/BUTR.CrashReport.BepInEx6.Source.csproj
@@ -40,7 +40,7 @@
-
+
diff --git a/src/BUTR.CrashReport.Decompilers/BUTR.CrashReport.Decompilers.csproj b/src/BUTR.CrashReport.Decompilers/BUTR.CrashReport.Decompilers.csproj
index 3ac83c8..4528440 100644
--- a/src/BUTR.CrashReport.Decompilers/BUTR.CrashReport.Decompilers.csproj
+++ b/src/BUTR.CrashReport.Decompilers/BUTR.CrashReport.Decompilers.csproj
@@ -8,7 +8,7 @@
-
+
@@ -17,7 +17,7 @@
-
+
diff --git a/src/BUTR.CrashReport.Decompilers/Utils/MethodCopier.cs b/src/BUTR.CrashReport.Decompilers/Utils/MethodCopier.cs
index ae74900..dc6b8e6 100644
--- a/src/BUTR.CrashReport.Decompilers/Utils/MethodCopier.cs
+++ b/src/BUTR.CrashReport.Decompilers/Utils/MethodCopier.cs
@@ -6,8 +6,7 @@
using System.Diagnostics;
using System.IO;
using System.Reflection;
-
-using TypeAttributes = AsmResolver.PE.DotNet.Metadata.Tables.Rows.TypeAttributes;
+using TypeAttributes = AsmResolver.PE.DotNet.Metadata.Tables.TypeAttributes;
namespace BUTR.CrashReport.Decompilers.Utils;
diff --git a/src/BUTR.CrashReport.Renderer.Html/BUTR.CrashReport.Renderer.Html.csproj b/src/BUTR.CrashReport.Renderer.Html/BUTR.CrashReport.Renderer.Html.csproj
index 0d8c39b..aa4ccc4 100644
--- a/src/BUTR.CrashReport.Renderer.Html/BUTR.CrashReport.Renderer.Html.csproj
+++ b/src/BUTR.CrashReport.Renderer.Html/BUTR.CrashReport.Renderer.Html.csproj
@@ -16,7 +16,6 @@
-
diff --git a/src/BUTR.CrashReport.Renderer.ImGui/BUTR.CrashReport.Renderer.ImGui.csproj b/src/BUTR.CrashReport.Renderer.ImGui/BUTR.CrashReport.Renderer.ImGui.csproj
index 33be88f..48e9600 100644
--- a/src/BUTR.CrashReport.Renderer.ImGui/BUTR.CrashReport.Renderer.ImGui.csproj
+++ b/src/BUTR.CrashReport.Renderer.ImGui/BUTR.CrashReport.Renderer.ImGui.csproj
@@ -15,8 +15,8 @@
false
-
-
+
+
@@ -30,16 +30,16 @@
-
-
-
-
-
+
+
+
+
+
-
+
diff --git a/src/BUTR.CrashReport.Renderer.ImGui/CrashReportImGui.cs b/src/BUTR.CrashReport.Renderer.ImGui/CrashReportImGui.cs
index 320acf6..9c86239 100644
--- a/src/BUTR.CrashReport.Renderer.ImGui/CrashReportImGui.cs
+++ b/src/BUTR.CrashReport.Renderer.ImGui/CrashReportImGui.cs
@@ -55,7 +55,7 @@ public static void ShowAndWait(CrashReportModel crashReportModel, IListfalse
-
-
+
+