Hello,
I have project with following structure:
SolutionA
Project1
Project2
SolutionB
Project 3
I would like to build the project and then transfer the output to a folder. The folder should be constructed by incrementing a number from last build and then create a folder
Want:
Output
<bldXXX>
solutionA
project1,dll
project2.dll
solutionB
project3.dll
Everytime the project build I want get the next build number and create the dir.
How do I dod this using msbuild.
Thanks
Output