public static ShellUtilities.ProcessOutput InstrumentAssembly(string options, string path)
 {
     string[] commandLine = BuildCommandLine(options, path);
     return(System.Diagnostics.Debugger.IsAttached
                         ? ShellUtilities.shellm(InstrumentationUtilityPath, commandLine)
                         : ShellUtilities.shell(InstrumentationUtilityPath, commandLine));
 }