Previous Topic Next topic Print topic


Build the Project

  1. Before you build the project, change the contents of program.pli to:
    /* Micro Focus Open PL/I Console Application */
     
     program: proc options (main);
       dcl sub entry;
       dcl a1 char(14);
       put skip list ('Hello world - main' );
       call sub();
       put skip;
       get list (a1);
       
     end program;
    
  2. On the menu bar click Tools > Options.
  3. Expand Projects.
  4. Select Build and Run.
  5. From the MSBuild project build output verbosity dropdown list, select Normal.
  6. Click OK.
  7. On the menu bar, click Build.
  8. Click Build Solution.
    Note: If while going through the tutorial, you have already built the project, then you need to click Rebuild Solution instead of Build Solution.

If you inspect the Output window, you will notice that program.pli has been compiled with the -margins 2,72 option but sub.pli has not and the build is clean.

Previous Topic Next topic Print topic