diff --git a/Directory.Build.props b/Directory.Build.props
index 4be686d4..92e2d14e 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -6,7 +6,7 @@
https://github.com/Washi1337/Echo/LICENSE.md
https://github.com/Washi1337/Echo
git
- 12
+ 14
enable
1.0.0
alpha.1
diff --git a/src/Platforms/Echo.Platforms.AsmResolver/Echo.Platforms.AsmResolver.csproj b/src/Platforms/Echo.Platforms.AsmResolver/Echo.Platforms.AsmResolver.csproj
index 16aec40e..1d837109 100644
--- a/src/Platforms/Echo.Platforms.AsmResolver/Echo.Platforms.AsmResolver.csproj
+++ b/src/Platforms/Echo.Platforms.AsmResolver/Echo.Platforms.AsmResolver.csproj
@@ -22,7 +22,7 @@
-
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive
diff --git a/src/Platforms/Echo.Platforms.AsmResolver/Emulation/CilVirtualMachine.cs b/src/Platforms/Echo.Platforms.AsmResolver/Emulation/CilVirtualMachine.cs
index 80417b82..b0941951 100644
--- a/src/Platforms/Echo.Platforms.AsmResolver/Emulation/CilVirtualMachine.cs
+++ b/src/Platforms/Echo.Platforms.AsmResolver/Emulation/CilVirtualMachine.cs
@@ -35,12 +35,12 @@ public class CilVirtualMachine
///
/// The main module to base the context on.
/// Indicates whether the virtual machine runs in 32-bit mode or 64-bit mode.
- public CilVirtualMachine(ModuleDefinition contextModule, bool is32Bit)
+ public CilVirtualMachine(RuntimeContext runtimeContext, bool is32Bit)
{
Memory = new VirtualMemory(is32Bit ? uint.MaxValue : long.MaxValue);
Loader = new PELoader(Memory);
- ValueFactory = new ValueFactory(contextModule, is32Bit);
+ ValueFactory = new ValueFactory(runtimeContext, is32Bit);
HostObjects = new ObjectMapMemory