Possible Duplicate:
MSBuild: What is it, and when do I need it?
I`ve never used MSBuild and have no idea what is the purpose of MSBuild. It would be nice if anyone describe briefly that in what kind of situation people use MSBuild.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Basically MsBuild is for building your project/solution. You can use msbuild commandline prompt to build your project rather than right click and build. MsBuild is very useful when it comes to automated build servers where you build projects once somebody checkin any new code.
Another advantage of msbuild is, it’s capable to build your project without having VS IDE. You don’t need VS IDE to build your project in automated build servers.
Below are few sites that provide good information for you.
http://msdn2.microsoft.com/en-us/library/wea2sca5.aspx MSDN MSBuild Documentation
http://channel9.msdn.com/wiki/default.aspx/MSBuild.HomePage MSBuild Wikki
http://msdn2.microsoft.com/en-us/library/0k6kkbsd.aspx MSBuild Reference
http://blogs.msdn.com/msbuild/default.aspx MSBuild Team Blog