Hi,
I have installed FinalBuilder 6 with VS.Net support and have managed to build a solution for specific build configuration.
What I want to know is :
Is there a way to easily look at a solution file (sln) for all available build configurations and build them one after another ?
Thank you,
Luc
Hi Luc,
There isn’t an in-built way of retrieving all the configurations of a solution, but you should be able to manually parse the solution file using FinalBuilder (possibly with Regular Expressions). Once you have the list of configurations you can use the ‘List Iterator’ to execute the ‘Build VS.Net Solution’ action for each configuration.
Regards,
Paul.
Hi Paul,
Thanks for the help hint.
I have begun to look at the different iterator available for parsing a file and my question would be :
What is the main difference on using the File/Fileset Iterator on a single file vs File Content Iterator ?
Thank you.
Hi Luc,
The 'File/Fileset Iterator' is used when you want to iterate over a directory or a filespec and retrieve the path to each file that it finds, where as the 'File Contents Iterator' is to be used when you wish to iterate over the contents of a file (line-by-line). You would not typically use the 'File/Fileset Iterator' on a single file.
I've attached an example project that should demonstrate the difference.
Regards,
Paul.
FileContentsVsFileIterator.fbz6 (2.226 KB)