tags:

views:

20

answers:

1

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?

+2  A: 

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

heavyd
Thank you, this is what I was looking for!
James
Does MSBuild expose an API for start a build which it threads internally or does managing a thread to handle building seperate from the application at large need to be done by the application?
James