コード例 #1
0
        static void Main(string[] args)
        {
            var options = new Options();

            options.GenerateSolution      = true;
            options.SolutionDirectoryName = Path.GetFileNameWithoutExtension(Path.GetDirectoryName(args[0]));
            StubDecompiler.DecompileProject(args[0], options);
        }
コード例 #2
0
 public TypeFixer(StubDecompiler stubDecompiler)
 {
     Decompiler = stubDecompiler;
 }
コード例 #3
0
        public static void DecompileProject(string managedDir, Options options)
        {
            var blueprintDecompiler = new StubDecompiler(options, managedDir);

            blueprintDecompiler.Decompile();
        }