简体   繁体   中英

How to create library project or reuse the code

I was working on Android app development and now I have switched to Windows Phone 8 app development, and have a problem.

I have 5 projects which have the same architecture (ie the UI and the code are exactly the same but only the data and app name are different). In Android what we had done is created a project and made that as library project and use this a Jar file and added to other apps.

Ex: CommonProject as library

Project 1

(a) Right-click on your project -> Properties

(b) In Android->Library section click Add CommonProject

You can refer to link : How to add a Library Project to a android project? for more details.

So now how can I achieve the same in Visual Studio 2012 (C#) for a Windows Phone 8 app?

I think you can add a Project Reference , following that documentation :

In Solution Explorer , select the Web project that you want to add the project reference to.

On the Website menu (for Web site projects) or the Project menu (for Web application projects), choose Add Reference . Alternatively, you can right-click your Web project in Solution Explorer and then click Add Reference.

The Add Reference dialog box is displayed.

Click the Projects tab .

From the list of available projects, select the one to which you want to add a reference and then click OK.

The following are added to your Web project's Bin folder: A copy of the assembly created from the added project. Copies of dependent assemblies, XML document files, license files, resource files, and so on.

  1. Right click on Solution
  2. Add -> New Project
  3. Select 'Windows Phone Class Library' under windows phone
  4. Click on OK new library will be added in your solution
  5. Add reference in your project by right click on References
  6. Go to solution select class library project.

May this will help you

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM