I came across this thread which talks about building a solution from command prompt
It states that you need to do
msbuild project.sln /Flags...
Now currently I have everything setup in VS2012 and all I do is build > Rebuild solution in debug mode.Everything is already setup in VS2012.I simply want to automate that process so In my batch file I do this
msbuild project.sln
However I do not specify any flags is there a difference between the two. Isnt it suppose to pick up flags from the project.sln ?