Changes between Version 11 and Version 12 of CreateNewProjectInXamarinStudio
- Timestamp:
- 02/27/14 20:40:16 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CreateNewProjectInXamarinStudio
v11 v12 1 = Introduction = 1 = Creating a New Project in Xamarin Studio = 2 3 == Introduction == 2 4 3 5 Let's say: … … 10 12 Here are the steps done with XamarinStudio 4.2.3 on Windows. 11 13 12 = Create a New Solution with Library Project=14 == Create a New Solution with Library Project == 13 15 14 16 * Launch Xamarin Studio … … 32 34 }}} 33 35 34 = Create Console Project=36 == Create Console Project == 35 37 36 38 * In the solution outline, the very top node says "!MyCompany.!MyProject" … … 50 52 }}} 51 53 52 = Copy the Core=54 == Copy the Core == 53 55 54 56 I like to copy Cobra's core library to co-reside with my program. This insulates it from the environment. … … 60 62 * Click "OK" 61 63 62 = Run It=64 == Run It == 63 65 64 66 Try running the project. … … 77 79 Press "Return" to continue. 78 80 79 = Build Files=81 == Build Files == 80 82 81 83 In the file system, you will now have these files: … … 104 106 You can remove the "Console.readLine" from the program. It's there so that when you run the program from the IDE, the new output window will be "paused" so you can read it. 105 107 106 = Default Namespaces=108 == Default Namespaces == 107 109 108 110 The Cobra language has [wiki:Namespace namespaces] which are either declared in code: … … 124 126 125 127 126 = Where to go from here=128 == Where to go from here == 127 129 128 130 * You can now start fleshing out your library. … … 134 136 * If you see errors on this page, or you have additional tips, edit this page. That's the "wiki way". 135 137 136 = See Also=138 == See Also == 137 139 138 140 * XamarinStudio 139 141 * [wiki:IDESupport] 140