I have a really big project and what i am trying to do is this:
Occasionally, i have to make few (minor) changes in a single class. Since this is a minor change, i really hate to open visual studio (ver 2010) and wait for all projects to load. Instead i open notepad, change that particular file use msbuild.exe to build the entire solution.
Now the question is,
How to get the build status from msbuild.exe ? (i plan to write a nice gui or a web application from which after i invoke this msbuild.exe, i can get the build status, show to the user)
Is this really a good idea to use msbuild.exe in vs2010 or vs2012? (I saw http://msdn.microsoft.com/en-us/library/ms171452(v=vs.90).aspx specify the supported version as Visual studio 2008. Though this is working in vs2010, is this the correct way of doing it?)
thanks in advance.