Versions Compared

Key

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

...

Code Block
languagexml
<UsingTask TaskName="FinalBuilder.FBCmd" AssemblyName="FinalBuilder.MSBuild.Tasks, Version=78.0.0.0, Culture=neutral, PublicKeyToken=300e5b79bda2b697" />
<Target Name="AfterBuild">
  <FBCmd ProjectFile="C:\My Build\My Build.fbp7fbp8" />
</Target>
Here is an example task showing all available options:
<FBCmd ProjectFile=".\Included Project.fbp7fbp8"
Variables="VariableA='Hello World';VariableB=66"
StopIfFBFails="true"
AllowInteractive="true"      
DontWriteToLog="false"
Timeout="30000"
     ShowBanner="true"  
     FBVersion="7"
 />

...