0

Doxygen は、ファイル名を渡すのではなく、stdin を介して .doxy ファイルの内容を渡す方法を提供しますが、C# からそれを行う方法がわかりません。

簡単にするために、doxygen 構成ファイルの内容が単純に保存されてstring[] linesいるとしましょう。doxygen.exe を実行して、この内容をフィードします。

4

1 に答える 1

0

コメントに記載されているリンクから、次の行に沿って自分でこれを機能させました。

// Prepare the process to run
    ProcessStartInfo start = new ProcessStartInfo();
    // Enter in the command line arguments, everything you would enter after the executable name itself
    start.Arguments = " -";
    // Enter the executable to run, including the complete path
    start.FileName = "doxygen.exe";
    // Do you want to show a console window?
    start.WindowStyle = ProcessWindowStyle.Normal;
    start.CreateNoWindow = false;
    start.RedirectStandardInput = true;
    start.UseShellExecute = false;

    // Run the external process & wait for it to finish
    using (Process proc = Process.Start(start))
    {
        //doxygenProperties is just a dictionary
        foreach (string key in doxygenProperties.Keys)
            proc.StandardInput.WriteLine(key+" = "+doxygenProperties[key]);
        proc.StandardInput.Close();
        proc.WaitForExit();

        // Retrieve the app's exit code
        int exitCode = proc.ExitCode;
    }
于 2013-01-11T11:39:54.013 に答える