How do i specify wcf behaviorExtension class type without the assembly version number?
Posted
by Mr Bell
on Stack Overflow
See other posts from Stack Overflow
or by Mr Bell
Published on 2010-03-25T18:47:52Z
Indexed on
2010/03/25
18:53 UTC
Read the original article
Hit count: 791
I have a web app that uses a WCF service that utilizes a behaviorExtension like so:
<behaviorExtensions>
<add name="clientCredentialsExtension" type="Simon.Web.Giftcard.WCFSecurity.ClientCredentialsExtensionElement, Simon.Web.Giftcard, Version=1.0.3736.20411, Culture=neutral, PublicKeyToken=null"/>
</behaviorExtensions>
The problem is this web app's version changes with every compile (i think) and thus invalidating this entry.
How can I avoid having to change the version number every time I compile this? Can I specify the extension in code somewhere?
© Stack Overflow or respective owner