|
|
|
@ -30,6 +30,7 @@ namespace ICSharpCode.ILSpy
@@ -30,6 +30,7 @@ namespace ICSharpCode.ILSpy
|
|
|
|
|
public string Search; |
|
|
|
|
public string Language; |
|
|
|
|
public bool NoActivate; |
|
|
|
|
public string ConfigFile; |
|
|
|
|
|
|
|
|
|
public CommandLineArguments(IEnumerable<string> arguments) |
|
|
|
|
{ |
|
|
|
@ -49,6 +50,8 @@ namespace ICSharpCode.ILSpy
@@ -49,6 +50,8 @@ namespace ICSharpCode.ILSpy
|
|
|
|
|
this.Language = arg.Substring("/language:".Length); |
|
|
|
|
else if (arg.Equals("/noActivate", StringComparison.OrdinalIgnoreCase)) |
|
|
|
|
this.NoActivate = true; |
|
|
|
|
else if (arg.StartsWith("/config:", StringComparison.OrdinalIgnoreCase)) |
|
|
|
|
this.ConfigFile = arg.Substring("/config:".Length); |
|
|
|
|
} else { |
|
|
|
|
this.AssembliesToLoad.Add(arg); |
|
|
|
|
} |
|
|
|
|