ChrisHammond / dnnCHAT

This module for DNN 7.1.0+ utilizes SignalR and DAL2 to create a Chat Room functionality for DNN
http://www.dnnchat.com
Other
24 stars 21 forks source link

Updating for Microsoft.Owin 2.0.1 #26

Open ChrisHammond opened 10 years ago

ChrisHammond commented 10 years ago

Need to automagically add the following to the web.config file on install/upgrade

 <dependentAssembly>
        <assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-2.0.1.0" newVersion="2.0.1.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-2.0.1.0" newVersion="2.0.1.0" />
      </dependentAssembly>
bdukes commented 10 years ago

Look in the manifest for the Telerik provider, it sets up a binding redirect

ChrisHammond commented 10 years ago

Thanks Brian, will do