Browse Source

DecompilerSettings: change default of ThrowOnAssemblyResolveErrors to true. Note: this is only in effect, when using CSharpDecompiler directly.

pull/960/head
Siegfried Pammer 8 years ago
parent
commit
b3bf6258fc
  1. 2
      ICSharpCode.Decompiler/DecompilerSettings.cs

2
ICSharpCode.Decompiler/DecompilerSettings.cs

@ -404,7 +404,7 @@ namespace ICSharpCode.Decompiler
} }
} }
bool throwOnAssemblyResolveErrors = false; bool throwOnAssemblyResolveErrors = true;
public bool ThrowOnAssemblyResolveErrors { public bool ThrowOnAssemblyResolveErrors {
get { return throwOnAssemblyResolveErrors; } get { return throwOnAssemblyResolveErrors; }

Loading…
Cancel
Save