Wiki

Changes between Version 1 and Version 2 of CreateNewProjectInXamarinStudio

Show
Ignore:
Timestamp:
02/27/14 20:12:55 (11 years ago)
Author:
Charles
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CreateNewProjectInXamarinStudio

    v1 v2  
    77= Create a new solution = 
    88 
    9 blah blah 
     9 * Launch Xamarin Studio 4.2.3 
     10 * File > New > Solution 
     11 * Choose "Cobra" > Console Project 
     12 * Give a name like "!MyCompany.!MyProject.Lib" in the "Name:" field 
     13 * Edit the "Solution name:" field to chop off the ".Lib" to make it "!MyCompany.!MyProject" 
     14 * Leave "Create directory for solution" checked. 
     15 * Click "OK" 
     16 * Edit the class: 
     17 
     18{{{ 
     19#!cobra 
     20class Thing 
     21 
     22        test 
     23                pass 
     24 
     25        get two as int 
     26                return 2 
     27}}}