4

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.)

Firoso
  • 6,647
  • 10
  • 45
  • 91
  • possible duplicate of [Is there a good tutorial on MSBuild scripts?](http://stackoverflow.com/questions/1326445/is-there-a-good-tutorial-on-msbuild-scripts) – Ruben Bartelink Aug 10 '10 at 08:10

3 Answers3

2

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

Hans Passant
  • 922,412
  • 146
  • 1,693
  • 2,536
2

Have you looked at the online docs?

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

Brian
  • 117,631
  • 17
  • 236
  • 300
1

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.

Aaron Jensen
  • 25,861
  • 15
  • 82
  • 91