Redirecting assembly versions

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
 
M

Mattias Sjögren

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
 
E

Eran Sandler

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top