Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I had made some really cool changes to the Prism framework which work great on my own machine.

I copied over the prism source to my work laptop and recompiled it there. I am using Prism 4.0.

When I copy the updated Microsoft.Practices.Prism.dll file to the location used by our app, and recompile the application that uses it, I get this error:

The type 'Microsoft.Practices.Prism.Modularity.InitializationMode' is defined in an assembly that is not referenced. You must add a reference to assembly 'Microsoft.Practices.Prism, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.

The new dll is in the same location as the old one and I can double click it in the reference section and bring up the object explorer on it. It has the "initializationMode" property that says can't be found. The property sheet for this dll states it is version 4.0.0.0.

the weird part is I did strong name it and looked at using the IL Disassembler and it looks ok. but still same error. When I build it on my own Win 7 box I don't sign it and it works fine with the other dll's. When I build it on my work computer, it fails. My work laptop (xp) is really locked down.. while my own box everything is admin rights... does that matter?

The work project I want to use it on is huge and I don't want to go and modify all of the projects.. I should just be able to replace the existing Microsoft.Practices.Prism.dll file with my newly built one...

Any ideas why I can't drop this new dll in place?

Thanks Harold

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.