I am an intern with a start-up company. I don\'t know anything about Batch files, XML files, the command prompt, or msbuild. I only know the basics of C#.
I have bee
Save following targets file as buildall.targets
in the root of your solutions directory
Create batch file named BuildAll.cmd
with following content: (change path to msbuild.exe depends on .NET Framework version you are using)
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\msbuild buildall.targets
Run/execute BuildAll.cmd
See MSDN: How to: Select the Files to Build for more details on recursive folder traversal, especially "Specifying Inputs with Wildcards" part