user9969
user9969

Reputation: 16070

MSBuild examples .Need to learn a bit about it

I work in place where they make large use of MSBUILD /task to build solutions and move dlls about,rather than just build a solution within visual studio.

I need to get a grasp quickly about it ,any books or articles that gives some examples of what you can do with msbuild?

thanks for any suggestions

Upvotes: 1

Views: 903

Answers (4)

Brian Kretzler
Brian Kretzler

Reputation: 9938

I've recently authored a book named "MSBuild Trickery: 99 Ways to Bend the build Engine to Your Will" (see my profile for link). It includes tricks and best-practices based on many years experience using MSBuild in large build environments.

Upvotes: 3

JonAlb
JonAlb

Reputation: 1720

Sayed has book and blogs about MSbuid here:

http://sedodream.com/

so profile: https://stackoverflow.com/users/105999/sayed-ibrahim-hashimi

Upvotes: 4

Samuel Slade
Samuel Slade

Reputation: 8623

Probably best off starting with reading about it's purpose. You can then refer here for a simple tutorial on how to get started. I would recommend setting up a simple project that doesn't do much and create a simple MSBuild project you can run to build it all.

Upvotes: 2

stijn
stijn

Reputation: 35921

since your place makes large use of msbuild, why don't you grab one of the scripts and study it, eventually asking questions to your collegues?

Upvotes: 2

Related Questions