Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Silverlight 5 RC and am facing a very perplexing problem. My project structure is like this..

  1. The Actual Silverlight Application (references 1 and 3)
  2. A "Common" Silverlight class project (references 3)
  3. A "resources" and "constants" Silverlight project
  4. An ASP .NET project hosted in IIS

Here's the problem...the resulting .XAP doesn't contain the .dll for project 3. The .dll is present in the bin directory of projects 1 & 2. The odd part is that at compile time, projects 1 & 2 can correctly load resources, classes etc from project 3 but not at run-time since the .dll for project 3 is missing from the XAP.

Any idea of what's going wrong?

Thanks in advance for any suggestions!

share|improve this question
Does your reference to project 3, in the main SL app, have it marked as Copy Local = true? That copy attribute drives the inclusion in the Xap, regardless of 2 referencing 3. – HiTech Magic Nov 18 '11 at 9:24
Yes, checked for that. Projects 2 & 3 have the same attributes in the project settings for Project 1. No differences noted. – abjbhat Nov 19 '11 at 9:02
Was this ever solved? I have same issue – CzechDeveloper Oct 9 '12 at 8:36
No, I never found a solution. – abjbhat Oct 16 '12 at 4:47

1 Answer

I came across this while having a similar problem - turns out assemblies with names ending in "Resources" won't be added to the XAP. Simply rename the assembly.

Edit: I stumbled across this blog, which gave me this answer: http://isolatedstorage.wordpress.com/2010/10/25/reserved-xap-file-names-resource-dll/

share|improve this answer
Hi adamsp, I no longer have access to the code. If any one else can test and verify this, please let me know. I can mark this as an answer. -Thanks! – abjbhat Nov 14 '12 at 11:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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