public int dumpPdbGuidsToFile()

in teamcity-symbol-agent/src/main/java/jetbrains/buildServer/symbols/tools/JetSymbolsExe.java [34:47]


  public int dumpPdbGuidsToFile(Collection<File> files, File output, BuildProgressLogger buildLogger) throws IOException {
    final GeneralCommandLine commandLine = new GeneralCommandLine();
    commandLine.setExePath(myExePath.getPath());
    commandLine.addParameter(DUMP_SYMBOL_SIGN_CMD);
    commandLine.addParameter(String.format("/o=%s", output.getPath()));
    commandLine.addParameter(String.format("/i=%s", dumpPathsToFile(files).getPath()));

    final ExecResult execResult = executeCommandLine(commandLine, buildLogger);
    if (execResult.getExitCode() == 0 && !execResult.getStdout().isEmpty()) {
      buildLogger.message("Stdout: " + execResult.getStdout());
    }

    return execResult.getExitCode();
  }