Is there any way to change the name of a dynamic assembly after it has been created? I'm using a framework that uses dynamic methods, and it is creating a dynamic assembly with the same name as my main assembly (which causes problems with WPF when it tries to load resources). So I need to find a workaround, and I thought of trying to change the name of the dynamic assembly.

I've tried using GetName() and then setting the Name property, but it appears that GetName returns a clone of the name because my change doesn't stick.

What else can I try?

link|improve this question

78% accept rate
Do you have access to the framework source code? Is changing that an option? – Dr. Sbaitso Mar 23 '10 at 14:23
I can't change it directly. I have contacted the developers, and hopefully they will make the change for me. – Samuel Jack Mar 23 '10 at 21:54
What framework are you using? – Firestrand Mar 26 '10 at 23:38
feedback

1 Answer

You should be able to use the Common Compiler Infrastructure to modify the saved assembly and change the stored Assembly Name.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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