Duefectu
Duefectu

Reputation: 1642

Xamarin.Forms Add project reference to a portable dll

I need to add a reference to a portable library in the main Xamarin.Forms Project. There isn't References folder nor Project properties form.

enter image description here

The library is a portable library compatible with Android, iOS and Windows Phone. It has the app logic that I don't like to put on the Xamarin Project.

The only way I see is to use referenced files to the original portable class.

Thanks for your time!

Upvotes: 0

Views: 1191

Answers (1)

Nigel Ferrissey
Nigel Ferrissey

Reputation: 361

According to your screenshot, PairBook is a Shared Project and therefore doesn't have references or produce any output.

The code in the shared project is compiled into other projects that reference it and exists purely as a collection of source code.

Hope that helps.

Upvotes: 2

Related Questions