I'm also facing this issue. I have both the Transient Fault Handling Application Block for Windows Azure and the Windows Azure Caching Preview installed using NuGet. I have the conflict warning occuring and when you click to create binding redirects
in VS, it does not do anything.
I've manually added binding redirects in my web.config. However this does not remove the warning. Even with the binding redirects, the web application will occasionally fail with "Could not load file or assembly 'Microsoft.ApplicationServer.Caching.Core'
or one of its dependencies." because I've specified to use 1.0.0.0 and it sometimes gets overwritten in the /bin with the 101.0.0.0 version and thus cannot find 1.0.0.0.
Anyone have a solution? I don't want to manually add references. I'd like to keep NuGet rollin' to keep my assemblies updated.
<dependentAssembly>
<assemblyIdentity name="Microsoft.ApplicationServer.Caching.Core" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.0.0.0" newVersion="1.0.0.0" />
<bindingRedirect oldVersion="101.0.0.0" newVersion="1.0.0.0" />
</dependentAssembly>
William Christenson