Assembly compatibility
-
Hi I'm looking for a way to check the compatibility between two versions of an assembly. I know how to retrieve the version of an assembly but i'm looking for a way to check the compatibility automatically. In exemple : 1.0.0.1 is compatible with 1.0.0.0 but 1.1.0.0 isn't with version 1.0.0.0 Do I have to verify manually or is there already a method in the Framework that does it ?
-
Hi I'm looking for a way to check the compatibility between two versions of an assembly. I know how to retrieve the version of an assembly but i'm looking for a way to check the compatibility automatically. In exemple : 1.0.0.1 is compatible with 1.0.0.0 but 1.1.0.0 isn't with version 1.0.0.0 Do I have to verify manually or is there already a method in the Framework that does it ?
By Microsoft's definition, only the same version number of a strongly-named assembly is compatible. Anything else has to be redirected either through publisher policy or using a bindingRedirect in the config file.
Stability. What an interesting concept. -- Chris Maunder
-
By Microsoft's definition, only the same version number of a strongly-named assembly is compatible. Anything else has to be redirected either through publisher policy or using a bindingRedirect in the config file.
Stability. What an interesting concept. -- Chris Maunder