Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add Portable Class Library (in DLL form) to Xamarin Studio

I have built a Portable Class Library with Visual Studio 2012 that will also build in Xamarin Studio. I would like to add the DLL built from that PCL (from the bin directory of the solution) to an existing (Android app) project in Xamarin Studio 5.3.

I notice that according to documentation from Xamarin, this is generally possible. For example, from this page:

The output from a PCL (ie. the resulting assembly DLL) can also be added as a reference to most projects. This makes PCL an ideal way to ship cross-platform components and libraries.

If I simply right click in the solution tree and add the file, this does not seem to be usable by the project.

What is the correct way to add this resulting DLL based on a PCL to my Xamarin project?

like image 842
Jake Avatar asked Sep 04 '14 16:09

Jake


2 Answers

If you look under the solution explorer on the left, you can right click on References and select Edit References. Then go to .Net Assembly and Browse to navigate to the desired *.dll file. Select the file and click Add.

This is the simplest way there may be more

  1. Right click References

enter image description here

  1. Click .Net Assembly

enter image description here

  1. Choose Browse (at the bottom right of dialog)

enter image description here

like image 161
Keith R Avatar answered Nov 18 '22 12:11

Keith R


I missed it at first too. In the bottom right of .NET Assemblies, there's a "Browse" button. :)

like image 1
Trevor Cox Avatar answered Nov 18 '22 13:11

Trevor Cox