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);
        }
Esempio n. 2
0
 public TypeFixer(StubDecompiler stubDecompiler)
 {
     Decompiler = stubDecompiler;
 }
Esempio n. 3
0
        public static void DecompileProject(string managedDir, Options options)
        {
            var blueprintDecompiler = new StubDecompiler(options, managedDir);

            blueprintDecompiler.Decompile();
        }