vote up 2 vote down star

If I avoid referencing assemblies that don't exist in the silverlight 2.0 runtime, will the.Net 2.0 library dlls I create with VS2008 work with silverlight without recompilation or other alteration?

flag

2 Answers

vote up 2 vote down check

No, you will still need to recompile against the Silverlight versions of the assemblies. You can add these files to a Silverlight Class Library project "as link", sharing the same file between both projects so you at least won't have to worry about getting out of sync.

link|flag
That's a shame :( not to doubt you but do you have any reference to support this? I'd like to pass management something official – Rory Becker Oct 1 '08 at 19:56
vote up 0 vote down

In addition to creating the files in one project and adding them as links in the other, you might still encounter API difference between the desktop and Silverlight APIs. You can work around those code differences with #if blocks, i.e.

#if SILVERLIGHT
/* some code */
#else // WPF
/* some other code */
#endif
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.