.NET Setting Thirdparty dll version dependencies with manifest file -
i developed .net dll depends on third party dll version 10.1.2 , has publickeytoken etc. now, third party dll release new version 11.0. , want make use of new version .net dll. dont want recompile against new version of third party dll. instead can have manifest xml file dll dynamically define third party dll version?
is purpose of manifest files?
basically, added following app.config
<dependentassembly> <assemblyidentity name="microsoft.analysisservices.adomdclient" publickeytoken="89845dcd8080cc91" culture="neutral" /> <bindingredirect oldversion="10.0.0.0" newversion="11.0.0.0" /> </dependentassembly>
and took care.thanks hans.
Comments
Post a Comment