1200 - Expected a variable at this location.
Description
The ForEach Function requires a specific syntax, "ForEach( .X in .Y )", which has not been adhered to.
Example
Config:
ForEach( 'bad' )
{
}
Output:
c:\Test\fbuild.bff(1):(10) FASTBuild Error #1200 - ForEach() - Expected a variable at this location.
ForEach( 'bad' )
^
\--here
Fix:
ForEach( .Var in .ArrayOfVars )
{
}