예제 #1
0
 public JustAssemblyProjectBuilder(string assemblyPath, string targetPath, ILanguage language, Telerik.JustDecompiler.External.IFileGenerationNotifier notifier)
     : base(assemblyPath, targetPath, language, new JustAssemblyProjectBuilderFrameworkVersionResolver(), new DecompilationPreferences(), notifier, NoCacheAssemblyInfoService.Instance)
 {
     this.decompilationResults = new Dictionary <uint, Dictionary <uint, IDecompilationResults> >();
 }
예제 #2
0
 public JustAssemblyProjectBuilder(string assemblyPath, AssemblyDefinition assembly,
                                   Dictionary <ModuleDefinition, Mono.Collections.Generic.Collection <TypeDefinition> > userDefinedTypes,
                                   Dictionary <ModuleDefinition, Mono.Collections.Generic.Collection <Resource> > resources,
                                   string targetPath, ILanguage language, IDecompilationPreferences preferences, Telerik.JustDecompiler.External.IFileGenerationNotifier notifier)
     : base(assemblyPath, assembly, userDefinedTypes, resources, targetPath, language, new JustAssemblyProjectBuilderFrameworkVersionResolver(), preferences, NoCacheAssemblyInfoService.Instance)
 {
     this.decompilationResults  = new Dictionary <uint, Dictionary <uint, IDecompilationResults> >();
     this.fileGeneratedNotifier = notifier;
 }