vote up 1 vote down star

There is a "Show output from" dropdown list in Visual Studio 2008 "Output" window, which allows viewing build events ordered by thread (Build Order). This is very useful when building big solutions on multi-core machines, as the log entries from those come unsynchronized.

Our organization has the automated build process, where solution(s) are compiled in a batch mode, using something like:

devenv Solution.sln /USEENV /build Release /out buildlog.txt

This will load Solution.sln, buld it in Release configuration and output build log into buildlog.txt.

Problem is: buildlog.txt is an output resembling "Build" output, not "Build Order", and therefore, it is pretty hard to read. Is there a command-line filter or something, which would convert output to "Build Order" format?

flag

73% accept rate

2 Answers

vote up 1 vote down check

Use simple filter, something like that:

static void Main(string[] args)
{
    var lines = new Dictionary<int, StringBuilder>();
    var line = Console.In.ReadLine();
    while (line != null)
    {
        int process = 0;
        var re = new Regex(@"^(?<process>\d+)\>.*$");
        if (re.IsMatch(line))
        {
            var match = re.Match(line);
            process = Convert.ToInt32(match.Groups["process"].Value);
        }

        if (!lines.ContainsKey(process))
        {
            lines[process] = new StringBuilder();
        }
        lines[process].AppendLine(line);

        line = Console.In.ReadLine();
    }

    foreach (var i in lines.Keys)
    {
        Console.Write(lines[i]);
    }
}
link|flag
vote up 1 vote down

I don't know whether this will solve the formatting issue, but you could try using msbuild instead of devenv, with a command line such as:

msbuild Solution.sln /p:Configuration=Release /logger:XMLLogger,C:\Loggers\MyLogger.dll;OutputAsHTML

See the documentation for msbuild for information on the logging options. You may find that this will give you the ability to have a more sensible output.

link|flag
I guess this method is a valid resolution, although I couldn't make msconfig to build solution when I ran it using following line: "MSBuild.exe Solution.sln /p:Configuration=Debug /p:PlatformName=Win32 ", but once that's fixed, I guess, I could write custom logger to log properly. I would still like to see if there is a simpler resolution – galets Oct 19 at 23:12
Try: msbuild Solution.sln /p:Configuration="Release|Win32" /target:"MainProject" – the_mandrill Oct 20 at 8:10
Didn't work, but MSBuild.exe Solution.sln /p:Configuration=Debug /p:Platform=Win32 did. Correct me if I am wrong, but doesn't MSBuild only build one project at a time? If yes, how will that help me with parallel builds? – galets Oct 20 at 16:25
I think msbuild may build in parallel. Visual Studio itself uses msbuild under the hood, if I recall correctly. – the_mandrill Oct 20 at 16:47
I ran msbuild it was only building one project at a time. I think Visual Studio spawns multiple MSBuilds – galets Oct 21 at 2:49
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.