Question

I am using MsBuild 4.0 in code, like so:

 var globalProperties = new Dictionary<string, string>();
 var buildRequest = new BuildRequestData(solutionPathAbsolute, globalProperties, null, new string[] { "Build" }, null);
 var pc = new ProjectCollection();

 var result = BuildManager.DefaultBuildManager.Build(new BuildParameters(pc), buildRequest);

Note how this API is completely different from MsBuild 3.5... How does one hook in a logger to recieve detailed build messages with the new API?

Was it helpful?

Solution

The BeginBuild method on the BuildManager allows you to pass in a set of BuildParameters which includes a Loggers property.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top