Changes between Version 3 and Version 4 of CreateNewProjectInXamarinStudio
- Timestamp:
- 02/27/14 20:18:28 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CreateNewProjectInXamarinStudio
v3 v4 53 53 I like to copy Cobra's core library to co-reside with my program. This insulates it from the environment. 54 54 55 * Right click " MyCompany.MyProject.Console" and choose "Options"55 * Right click "!MyCompany.!MyProject.Console" and choose "Options" 56 56 * Choose "Compiler" 57 57 * Make sure "Embed Run Time" is unchecked … … 61 61 = Run It = 62 62 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 67 You should see output like: 68 {{{ 69 Hello, world! 70 71 trace : t.two=2 72 - at Program.cobra:14 73 - in Program.main 74 }}} 75 76 Press "Return" to continue.