Preseason Build Project

From 1511Wookiee
Revision as of 11:56, 9 December 2019 by Programming (talk | contribs) (Created page with "<div class="mw-parser-output"><span style="font-size: large;">'''Build a Test Project in FRC IDE'''</span><br/> <br/> This assumes you have the project opened in 'FRC VS Code...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
Build a Test Project in FRC IDE

This assumes you have the project opened in 'FRC VS Code 2019'

1. Open Command Pallete: either use Ctrl+Shift+P or select from 'View' menu

2. Select 'WPILib: Build Robot Code'

3. In the VS Terminal window you will see:
      Executing task in folder ...

4. Next, in the Terminal window, you will see:
      <=========> x% CONFIGURING [?s] (go from 0% to 100%)

      'x' will go from 0 to 100%, and '?' is the number of seconds it took

5. After CONFIGURING gets to 100%, it will be replaced with:
      <=========> x% EXECUTING [?s] (go from 0% to 100%)

      'x' will go from 0 to 100%, and '?' is the number of seconds it tool

6. After EXECUTING gets to 100%, it will be replaced with:
      BUILD SUCCESSFUL in ?s

      '?' is the number of seconds it took


If there are any build errors, you will need to fix them and build again.
Scroll up to the first error and fix that first.