예제 #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);