I am having batch file called Formalbuild.bat ,It will take parameter name called componentName.
For ex. I will build the different components like below.
Formalbuild.bat ServiceComponent
Formalbuild.bat DatamodelComponent
Formalbuild.bat
...
...
Formalbuild.bat SomeXYZComponent
Is it possible to create array of component name and pass one by one component to batch file to do build?
As only the component name changes, you could use a
forloop or even better afor/floop.If the list of components is long you could also split them into multiple lines