Changes between Version 7 and Version 8 of CreateNewProjectInXamarinStudio
- Timestamp:
- 02/27/14 20:27:45 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CreateNewProjectInXamarinStudio
v7 v8 1 1 = Introduction = 2 2 3 Let's say your company name is '''!MyCompany''' and your project is called '''!MyProject'''. You want to put most of your code for the project in a library, with a small console program to provide a command line interface to it. 3 Let's say: 4 * You're developing a new project in Cobra 5 * You're using the XamarinStudio IDE 6 * Your company name is '''!MyCompany''' 7 * Your new project will be called '''!MyProject''' 8 * You want to put most of your code for the project in a library, with a small console program to provide a command line interface to it. 4 9 5 10 Here are the steps done with XamarinStudio 4.2.3 on Windows. … … 74 79 = Build Files = 75 80 76 In the file system, under the directory MyCompany.MyProject\MyCompany.MyProject.Console\bin\Debug77 78 you will now have these files: 79 81 In the file system, you will now have these files: 82 {{{ 83 > cd MyCompany.MyProject\MyCompany.MyProject.Console\bin\Debug 84 > dir 80 85 Cobra.Core.dll 81 86 MyCompany.MyProject.Console.exe … … 83 88 MyCompany.MyProject.Lib.dll 84 89 MyCompany.MyProject.Lib.pdb 90 }}} 91 92 You can run the program outside of Xamarin Studio and Cobra: 93 {{{ 94 > MyCompany.MyProject.Console 95 Hello, world! 96 97 trace : t.two=2 98 - at Program.cobra:14 99 - in Program.main 100 }}} 101 102 Press "Return" to continue. 103 104 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. 85 105 86 106 = Where to go from here =