I have some utilities and extension methods that I would like to leverage in an SL4 app. I know that to reference an assembly the project type has to be SL4 class library. I also understand that SL is a subset of the .NET framework. Therefore not all functionality is portable. So assume all the code I want to leverage in my SL4 app is portable to SL4.
What is the easiest way to expose an existing project/plain-old-CLR-library to SL4? I am looking for a maintainable workflow. As I develop against the library I want to leverage the new features in my SL4 app without having to rewrite the code in an SL4 class library.
Surley there is an easy way that I am completely missing...