2022-09-22 08:56:07 +08:00
|
|
|
|
using dnlib.DotNet;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace HybridCLR.Editor.Meta
|
|
|
|
|
{
|
2023-11-23 13:48:06 +08:00
|
|
|
|
public class AssemblyCache : AssemblyCacheBase
|
2022-09-22 08:56:07 +08:00
|
|
|
|
{
|
|
|
|
|
|
2023-11-23 13:48:06 +08:00
|
|
|
|
public AssemblyCache(IAssemblyResolver assemblyResolver) : base(assemblyResolver)
|
2022-09-22 08:56:07 +08:00
|
|
|
|
{
|
2022-12-13 18:10:20 +08:00
|
|
|
|
|
2022-09-26 12:12:57 +08:00
|
|
|
|
}
|
2022-09-22 08:56:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|