vdh_ant
vdh_ant

Reputation: 13146

MSBuild Starter Kits

Just wondering if anyone knows if there are any MSBuild starter kits out there.

What I mean by starter kits is that from the looks of it most builds to kinda the same sort of steps with minor changes here and there (i.e. most builds would run test, coverage, zip up the results, produce a report, deploy etc). Also what most people in general want from a CI build, test build, release build is mostly the same with minor changes here and there.

Now don't get me wrong i think that most scripts are fairly different in the end. But I can't help but think that most start out life being fairly similar.

Hence does anyone know of any "starter kits" that have like a dev/CI/test/release build with the common tasks that most people would want that you can just start changing and modifying?

Cheers Anthony

Upvotes: 8

Views: 614

Answers (3)

muruge
muruge

Reputation: 4133

PluralSight has a good video on the intro level course of MSBuild.

Upvotes: 1

daveangel
daveangel

Reputation: 573

You should check out the MSBuild blog site. They got some stuff: Getting Started with MSBuild

The MSBuild Extension Pack provides a collection of over 415 MSBuild Tasks, MSBuild Loggers and MSBuild TaskFactories.

Upvotes: 7

Esteban Lopez
Esteban Lopez

Reputation: 583

You can go first to this article: Walkthrough: Using MSBuild Really Usefull (in that article you can find a lot of link to more specific subjects related with MsBuild) ;)

Upvotes: 0

Related Questions