I have two different assemblies: Assembly1
and Assembly2
. Both assemblies use the same namespace SoftwareDrivers
. Now, I have two implementations of a class that has identical functionality, just different implementation and dependencies that tie one implementation to Assembly1
and the other to Assembly2
; I'll call this class PackageWriter
.
It is possibly, and likely, some projects will need to reference both assemblies, so I anticipate there will be an issue with resolving which PackageWriter
to use in that scenario. Is this the case? If so, is the only way to resolve this issue, without changing the structure of the project, to change the name of PackageWriter
?c