Hi, we have a rather big "base" FB project that contains a big number of MSBuild actions.
We also have a number of FB Projects that includes the base project for building the required components.
We would like these FB Projects to be able to send some sort configuration to the base FB Project to specify what components to build.
My first thought was to pass a comma separated variable to the base project containing the name of all required MSBuild actions, and then use the BeforeAction script to skip all actions not in this list.
For this to work the BeforeAction script must know about the name of the MSBuild project file, but I can't find any way to access the current action variables from the BeforeAction script, how do I do this?
Maybe there is a better solution to the entire problem?
//Chrille