Browse Source

AddIn: Pass /navigateTo:none to ILSpy as command-line parameter

pull/1726/head
Andreas Weizel 6 years ago
parent
commit
115f8ab0d9
  1. 3
      ILSpy.AddIn/ILSpyInstance.cs

3
ILSpy.AddIn/ILSpyInstance.cs

@ -42,7 +42,8 @@ namespace ICSharpCode.ILSpy.AddIn @@ -42,7 +42,8 @@ namespace ICSharpCode.ILSpy.AddIn
var process = new Process() {
StartInfo = new ProcessStartInfo() {
FileName = GetILSpyPath(),
UseShellExecute = false
UseShellExecute = false,
Arguments = "/navigateTo:none"
}
};
process.Start();

Loading…
Cancel
Save