I have a .NET 3.0 project which should be installed into GAC. I have some strong named assemblies, and in one of them there is control, which is used on a form of another strong named assembly.
When I change the version number of all assemblies and recompile the project, the resx files still reference the old assembly version until I open the form with the designer.
The whole project is compiled by a build server, which also sets the assembly version, therefore opening the form in a designer is not possible. So is there a chance to do the update programmatically?
The current solution is "search and replace" but sometimes we hit version numbers of 3rd-party assemblies that should not be changed.