Cosmos/source/Indy.IL2CPU/IndyAssemblyResolver.cs

13 lines
No EOL
323 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Mono.Cecil;
namespace Indy.IL2CPU {
public class IndyAssemblyResolver: DefaultAssemblyResolver {
public void RegisterAssembly(string aFile) {
base.RegisterAssembly(AssemblyFactory.GetAssembly(aFile));
}
}
}