Browse Source

WIP on #945: Add options LoadInMemory and ThrowOnAssemblyResolveErrors

pull/940/merge
Siegfried Pammer 8 years ago
parent
commit
bec8c61a41
  1. 28
      ICSharpCode.Decompiler/DecompilerSettings.cs

28
ICSharpCode.Decompiler/DecompilerSettings.cs

@ -375,6 +375,34 @@ namespace ICSharpCode.Decompiler @@ -375,6 +375,34 @@ namespace ICSharpCode.Decompiler
#endregion
#region Assembly Load and Resolve options
bool loadInMemory = false;
public bool LoadInMemory {
get { return loadInMemory; }
set {
if (loadInMemory != value) {
loadInMemory = value;
OnPropertyChanged();
}
}
}
bool throwOnAssemblyResolveErrors = false;
public bool ThrowOnAssemblyResolveErrors {
get { return throwOnAssemblyResolveErrors; }
set {
if (throwOnAssemblyResolveErrors != value) {
throwOnAssemblyResolveErrors = value;
OnPropertyChanged();
}
}
}
#endregion
CSharpFormattingOptions csharpFormattingOptions;
public CSharpFormattingOptions CSharpFormattingOptions {

Loading…
Cancel
Save