I have the following problem. I created software, containing several projects in one solution. When I fix a bug in one of my projects which doesn't change how functions behave, (For example a simple string change, or an extra try/catch block within a function) I must recompile and provide all my dll's again, because when I only provide the changed dll, the version doesn't match. I understand that the problem is due to the fact that my dll's are strongly named. But is there any way to accomplish that I can just replace the changed dll, while the version number is raised, without changing and distributing the other dll's?
相关问题
- Generic Generics in Managed C++
- Why does const allow implicit conversion of refere
- How to know full paths to DLL's from .csproj f
- How to Debug/Register a Permanent WMI Event Which
- 'System.Threading.ThreadAbortException' in
You can have both dlls and can use bindingRedirect as in below link
dll versioning in dotnet