I am working on WPF project developed in visual studio 10. I want to create a batch file so that I can run .bat file without opening VS10 solution and find errors if there are any. I referred this link but I dont understand how the commands msbuild,Configuration & platform work.
As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...