views:

75

answers:

3

I'm looking for resources for learning MS Build (not just books). At this point I'm mostly concerned with merging assemblies and automating build tasks. (nightly builds etc.)

+2  A: 

Neither merging nor automating builds has a lot to do with MSBuild. You'd need ILMerge and, say, CruiseControl.NET.

Hans Passant
so I'm barking up the wrong tree? What does MSBuild provide then?
Firoso
I'd say you'll need a fair knowledge of msbuild if you want to automate ILmerging and get the most out of automated builds.
nos
He doesn't want to read a book, that's out.
Hans Passant
@Hans Passant - I said not JUST books, I'm including e-books, articles, and webcasts.
Firoso
+2  A: 

Have you looked at the online docs?

http://msdn.microsoft.com/en-us/library/dd393574.aspx

Brian
A: 

I use the docs previously mentioned, but they weren't really helpful to learn MSBuild. For that, I turned to "Inside the Microsoft Build Engine: Using MSBuild and Team Foundation Build". After reading it and learning all the MSBuild concepts, I now use the MSBuild doc's as a reference. They finally make sense.

splattered bits