示例#1
0
文件: Program.cs 项目: kyuhwas/SOLPI
        static void Main(string[] args)
        {
            //Instrumentor
            Workspace workspace = new Workspace();

            workspace.MakeReady();
            var instrumetor = new SOLPI.Instrumentor(AppDomainLoader.SOLPath + AppDomainLoader.SOLExe, workspace);

            instrumetor.Process();

            //Loader
            var loader = new AppDomainLoader();

            loader.LinkWithSOL();
            loader.Boot();
        }
示例#2
0
 public abstract void Process(Instrumentor instrumentor, AssemblyDefinition assdef);