Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Here is another example of how to use the Execute Condition property:

...

Code Block
languagevb
titleVBScript
BuildType = "Full"

...

 

...

Code Block
languagejs
titleJavascript
BuildType == "Full"

 

...

Code Block
languagepowershell
titlePowershell
$FBVariables.GetVariable("BuildType") -eq "Full"

 

where BuildType is a FinalBuilder variable.

...