Redirecting assembly versions

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

When redirectiong assembly versions, is it possible to
use *'s?

<bindingRedirect oldVersion="9.0.0.452"
newVersion="9.*.*.*"/>

At one time I believe I read this was possible but I
can't find any documents on it now.

Thanks,
Steve
 
When redirectiong assembly versions, is it possible to
use *'s?

No. For oldVersion you can specify a range (1.2.3.4-5.6.7.8), but
newVersion should be a fixed single version number.



Mattias
 
You can use a range like Steve suggested, but set to like this:

(1.2.3.4-65535.65535.65535.65535)

This is almost as "*" since this is the maximum applicable number.
But I wouldn't recommend it.

Eran
 
Back
Top