I need to create a batch script that:
- git checkouts a branch
- git pulls it
- build the C# solution
- store the built C# solution in a location specified by the user
I have done steps 1 and 2 and they work fine. I am having problems with steps 3 and 4. How do I go about doing this? I have the file "Automated_Test_Recorder.sln".
The batch script should create a folder named "Automated_Test_Recorder" with the built solution inside.
I have seen something about using msbuild however I tried it and it does not seem to be recognised. Is there an alternative to this because if another user runs my batch script it will not work if they do not have msbuild.