Versions Compared

Key

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

...

Here is a minimal example which can be copy-and-pasted into an MSBuild Project file. The FinalBuilder project will run for the "AfterBuild" target.

Code Block
languagexml
<UsingTask TaskName="FinalBuilder.FBCmd" AssemblyName="FinalBuilder.MSBuild.Tasks, Version=7.0.0.0, Culture=neutral, PublicKeyToken=300e5b79bda2b697" />

...


<Target Name="AfterBuild">

...


  <FBCmd ProjectFile="C:\My Build\My Build.fbp7" />

...


</Target>

...


Here is an example task showing all available options:

...


<FBCmd ProjectFile=".\Included Project.fbp7"

...


Variables="VariableA='Hello World';VariableB=66"

...


StopIfFBFails="true"

...


AllowInteractive="true"

...

      
DontWriteToLog="false"

...


Timeout="30000"

...


     ShowBanner="true"

...

  
     FBVersion="7"

...


 />

Project File

Path to the FinalBuilder project to execute. Required.

...