From 85b4c134b219a7d9545311f5869c6f66694ce370 Mon Sep 17 00:00:00 2001 From: Mitko Stoikov Date: Fri, 23 Mar 2018 17:12:58 +0200 Subject: [PATCH] Updating JustDecompile engine to latest --- JustDecompileEngine | 2 +- UI/JustAssembly/Nodes/AssemblyNode.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/JustDecompileEngine b/JustDecompileEngine index 2f47471..2bf8c21 160000 --- a/JustDecompileEngine +++ b/JustDecompileEngine @@ -1 +1 @@ -Subproject commit 2f47471eb5fed0acaa438db9c00ed924969b80c7 +Subproject commit 2bf8c2187e2320c3b6b53b42de9695fe07937390 diff --git a/UI/JustAssembly/Nodes/AssemblyNode.cs b/UI/JustAssembly/Nodes/AssemblyNode.cs index 8b8e8b3..af1c52e 100644 --- a/UI/JustAssembly/Nodes/AssemblyNode.cs +++ b/UI/JustAssembly/Nodes/AssemblyNode.cs @@ -335,7 +335,7 @@ private void TrackFrameworkVersionAndAssemblyType(string filePath) AssemblyDefinition assemblyDefinition = GlobalAssemblyResolver.Instance.GetAssemblyDefinition(filePath); if (assemblyDefinition != null) { - AssemblyInfo assemblyInfo = NoCacheAssemblyInfoService.Instance.GetAssemblyInfo(assemblyDefinition, EmptyResolver.Instance, TargetPlatformResolver.Instance); + AssemblyInfo assemblyInfo = NoCacheAssemblyInfoService.Instance.GetAssemblyInfo(assemblyDefinition, EmptyResolver.Instance); Configuration.Analytics.TrackFeature("LoadedAssemblyFrameworkVersion." + assemblyInfo.ModulesFrameworkVersions[assemblyDefinition.MainModule].ToString()); Configuration.Analytics.TrackFeature("LoadedAssemblyType." + assemblyInfo.AssemblyTypes.ToString().Replace(", ", "_")); }