I have a .NET 3.0 project that needs to be installed in the GAC. I have several strong named assemblies, and one of them has a control that is used in the 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 version of the assembly until I open the form using the constructor.
The entire project is compiled by the build server, which also installs the build version, so opening the form in the designer is not possible. So, is there any way to do the update programmatically?
The current solution is βsearch and replace,β but sometimes we click on the version numbers of third-party assemblies that should not be changed.
source share