Rizwan Qureshi
Rizwan Qureshi

Reputation: 592

type universe cannot resolve assembly in Windows Phone 7.1

I am facing this error when I add a dll in my Windows Phone 7.1 project

enter image description here

Upvotes: 1

Views: 254

Answers (1)

Kevin Gosse
Kevin Gosse

Reputation: 39007

The only DLL you can reference in a Windows Phone app are the PCL (Portable Class Library) and those compiled specifically for Silverlight. The DLL you're trying to add targets the desktop version of the .NET Framework, and therefore can't be used.

Upvotes: 2

Related Questions