I have been deploying several programs into one folder using XCOPY deployment to a shared network drive as it makes it extremely easy for me to update in house programs. These have a shared DLL NNC.dll. It doesn't often get modified but has done recently so when I went to deploy I couldn't overwrite as it is a breaking change.
If I change the Assembly name in the NNC project to say NNC 1.1.dll copying it into the same folder on the network, would the newly deployed programs pick up the new DLL and the old ones NNC.DLL. This is ideally what I would like, but I wouldn't want to deploy and then realize the old programs are picking up the newest version assembly as it has a breaking change in it which I haven't fixed in all projects yet.
The assembly has a strong name and I updated the version number to match.