35 lines
874 B
C#
35 lines
874 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace Obfuz
|
|||
|
{
|
|||
|
public class PathAssemblyResolver : AssemblyResolverBase
|
|||
|
{
|
|||
|
private readonly string[] _searchPaths;
|
|||
|
|
|||
|
public PathAssemblyResolver(params string[] searchPaths)
|
|||
|
{
|
|||
|
_searchPaths = searchPaths;
|
|||
|
}
|
|||
|
|
|||
|
public override string ResolveAssembly(string assemblyName)
|
|||
|
{
|
|||
|
foreach(var path in _searchPaths)
|
|||
|
{
|
|||
|
string assPath = Path.Combine(path, assemblyName + ".dll");
|
|||
|
if (File.Exists(assPath))
|
|||
|
{
|
|||
|
//Debug.Log($"resolve {assemblyName} at {assPath}");
|
|||
|
return assPath;
|
|||
|
}
|
|||
|
}
|
|||
|
return null;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|