How can I use non-Silverlight assemblies in a Silverlight app? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T10:50:27Z http://stackoverflow.com/feeds/question/721375 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/721375/how-can-i-use-non-silverlight-assemblies-in-a-silverlight-app 5 How can I use non-Silverlight assemblies in a Silverlight app? norbertB 2009-04-06T13:14:02Z 2009-04-07T11:39:38Z <p>I'm working an project (pure hobby, "Sharping my skills") which has one unified back-end and multiple front-ends (ASP.NET MVC 1.0/JQuery and Silverlight 2). When I try to add reference to my business layer assembly in the Silverlight 2 project (VS2008); It gets rejected, because it's not a Silverlight assembly.</p> <p>Is their a way to include and reference a non-Silverlight assembly in a Silverlight app?</p> http://stackoverflow.com/questions/721375/how-can-i-use-non-silverlight-assemblies-in-a-silverlight-app/721389#721389 8 Answer by JaredPar for How can I use non-Silverlight assemblies in a Silverlight app? JaredPar 2009-04-06T13:17:53Z 2009-04-06T13:17:53Z <p>No there is not. Silverlight runs on a completely different CLR which is incompatible with the normal (desktop) CLR. It has an underlying different set of APIs in the BCL and most importantly a different metadata version number. These two factors, among others, prevent assemblies compiled for the desktop CLR from running by default on the Silverlight CLR. </p> <p>All assemblies must be compiled specifically for silverlight.</p> http://stackoverflow.com/questions/721375/how-can-i-use-non-silverlight-assemblies-in-a-silverlight-app/721391#721391 3 Answer by sipwiz for How can I use non-Silverlight assemblies in a Silverlight app? sipwiz 2009-04-06T13:19:03Z 2009-04-06T13:19:03Z <p>No it't not possible to reference assemblies that are not built against the Silverlight runtime.</p> <p>The way I have gotten around it is to create a new project for my business assemblies and then add all the classes from the original assembly to it. The key is that when you add them do it as an existing item and on the Add button click the down arrow and Add as Link. That way you still only have a single code base although you may have to add a few classes such as ApplicationException to make up for things missing from the Silverlight runtime.</p> http://stackoverflow.com/questions/721375/how-can-i-use-non-silverlight-assemblies-in-a-silverlight-app/721396#721396 2 Answer by Noldorin for How can I use non-Silverlight assemblies in a Silverlight app? Noldorin 2009-04-06T13:20:14Z 2009-04-06T13:20:14Z <p>The short answer is no, I'm afraid. The Silverlight runtime was designed to be a subset of the .NET framework, but the two are not directly compatible. (The runtimes are implemented quite differently, I believe, as Silverlight was designed to be cross-platform.)</p> <p>The good news however is that you have a whole host of workarounds. <a href="http://pagebrooks.com/archive/2008/10/11/sharing-code-between-.net-and-silverlight-platforms.aspx" rel="nofollow">This blog post</a> and <a href="http://www.codeproject.com/KB/silverlight/SLAssemblies.aspx" rel="nofollow">this CodeProject</a> article discuss the issue in depth and offer a variety of clean solutions. Hope that helps...</p> http://stackoverflow.com/questions/721375/how-can-i-use-non-silverlight-assemblies-in-a-silverlight-app/721412#721412 1 Answer by Marc Gravell for How can I use non-Silverlight assemblies in a Silverlight app? Marc Gravell 2009-04-06T13:22:38Z 2009-04-06T13:22:38Z <p>No. The source csproj must know it is a Silverlight project. This may mean keeping two project files with the same source ".cs" files. There is a handy csproj trick here - (copied from <a href="http://code.google.com/p/protobuf-net/source/browse/trunk/protobuf-net%5FSilverlight/protobuf-net%5FSilverlight.csproj" rel="nofollow">protobuf-net</a> where I do this for multiple frameworks):</p> <pre><code>&lt;ItemGroup&gt; &lt;Compile Include="..\YourMainProject\**\*.cs" /&gt; &lt;/ItemGroup&gt; </code></pre> <p>Then you only have to maintain one project; the Silverlight project gets everything from the tree.</p> <p>Note that the Silverlight BCL is heavily restricted, and not all functionality will be available. Getting code that compiles on both regular .NET and Silverlight can be... challenging.</p> <p>Alternatively, use proxy classes in the Silverlight app (i.e. via WCF etc). Not as rich, but simple to do.</p> http://stackoverflow.com/questions/721375/how-can-i-use-non-silverlight-assemblies-in-a-silverlight-app/722214#722214 1 Answer by Paul for How can I use non-Silverlight assemblies in a Silverlight app? Paul 2009-04-06T16:32:25Z 2009-04-06T16:32:25Z <p>The Silverlight runtime is a subset of the main .Net CLR. Although this can seem to be a pain there is a sensible reason for it - the Silverlight runtime needs to be light enough to be a browser plugin.</p> <p>If you place your other classes behind webservices then they can run under the full .Net runtime while your Silverlight application runs under the cut down CLR in the Browser plugin.</p> http://stackoverflow.com/questions/721375/how-can-i-use-non-silverlight-assemblies-in-a-silverlight-app/725247#725247 2 Answer by Mark Cooper for How can I use non-Silverlight assemblies in a Silverlight app? Mark Cooper 2009-04-07T11:39:38Z 2009-04-07T11:39:38Z <p>Actually, whilst it is difficult and probably not a good idea, <strong>it is possible to reference CLR assemblies in a Silverlight project</strong>. David Betz has an example on his blog: <a href="http://www.netfxharmonics.com/2008/12/Reusing-NET-Assemblies-in-Silverlight" rel="nofollow">http://www.netfxharmonics.com/2008/12/Reusing-NET-Assemblies-in-Silverlight</a></p> <p>Again it's worth stressing that you probably don't really want to do this. The Silverlight framework has been developed by experienced engineers, who have put a lot of thought into what should be included and what shouldn't. Think about the CLR objects you think you need, and try to understand why they aren't currently available, and what the alternatives are. </p> <p>Finally, remember that any CLR objects that you do add, will increase the size of your download.</p> <p>HTH, Mark</p>