I have a resource file where I am storing connection string etc for a class library (I cant use an App.config, don’t ask why).
It was my assumption (might be a stupid one) that I would be able to modify the .rex file out side of the complied assembly at runtime to be able to change connection string through environments without recompiling the assembly each time, can someone verify my assumption and if possible tell me how to do it?
Cheers
You can disassemble assembly, edit resources and assemble it again.
You can find some info here.