Wiki

Changes between Version 3 and Version 4 of CreateNewProjectInXamarinStudio

Show
Ignore:
Timestamp:
02/27/14 20:18:28 (10 years ago)
Author:
Charles
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CreateNewProjectInXamarinStudio

    v3 v4  
    5353I like to copy Cobra's core library to co-reside with my program. This insulates it from the environment. 
    5454 
    55  * Right click "MyCompany.MyProject.Console" and choose "Options" 
     55 * Right click "!MyCompany.!MyProject.Console" and choose "Options" 
    5656 * Choose "Compiler" 
    5757 * Make sure "Embed Run Time" is unchecked 
     
    6161= Run It = 
    6262 
    63  * Try running the project. 
    64    * If you get an error about System.Core, expand the References of the Console project in the solution outline, right click and choose "Delete". 
     63 Try running the project. 
     64   * Choose from the menu, Run > Start Without Debugging 
     65     * If you get an error about System.Core, expand the References of the Console project in the solution outline, right click and choose "Delete". 
     66 
     67You should see output like: 
     68{{{ 
     69Hello, world! 
     70 
     71    trace : t.two=2 
     72          - at Program.cobra:14 
     73          - in Program.main 
     74}}} 
     75 
     76Press "Return" to continue.