views:

47

answers:

1

I'm creating a library application that will act as a wrapper for an exposed API. This library ideally should work on any desktop application, but truth be told I'm intending to use this on the WP7 once I'm done creating the library.

Would this work?

+2  A: 

From silverlight.net:

Silverlight is the application development platform for Windows Phone 7. High performance gaming is also supported through the XNA Framework.

You can't reference a .NET assembly which was compiled against the full .NET Framework in a Silverlight application.

Develop your library for Silverlight and all should be fine.

dtb
But you can share the source code fairly easily, if there's no interop, or dependency on other libraries which you cant compile on silverlight...
jdv