Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you ignore specific versions of strongly named references?

Tags:

c#

.net

reference

I am doing some addons on a product which has strongly named references. If I select false in Specific Version, the program complains that the reference is installed already.

Is there any possibility to ignore specific strongly named references?

like image 754
Mark O'Grady Avatar asked Sep 14 '11 13:09

Mark O'Grady


1 Answers

You cannot ignore it, but you can redirect a request from one version to another version.

See:Redirecting Assembly Versions

The Specific Version property is only applicable for references to assemblies that don't have a strong name.

like image 128
João Angelo Avatar answered Sep 20 '22 22:09

João Angelo