Removed an using, redundant when building on Mono

This commit is contained in:
penev92
2022-06-03 22:10:30 +03:00
committed by Matthias Mailänder
parent 6a31b1f9f3
commit c1cb9ea6be

View File

@@ -15,7 +15,6 @@ using System.IO;
using System.Linq;
using System.Reflection;
using OpenRA.Primitives;
using OpenRA.Support;
namespace OpenRA
{
@@ -61,7 +60,7 @@ namespace OpenRA
if (!ResolvedAssemblies.TryGetValue(hash, out var assembly))
{
#if NET5_0_OR_GREATER
var loader = new AssemblyLoader(resolvedPath);
var loader = new Support.AssemblyLoader(resolvedPath);
assembly = loader.LoadDefaultAssembly();
ResolvedAssemblies.Add(hash, assembly);
#else