Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>This is a known issue with Nuget : Refer <a href="https://nuget.codeplex.com/workitem/3827" rel="noreferrer">this</a>. Binding redirects not getting added automatically for worker role projects. The reason for this failure is SignalR binaries are built with a dependency over Microsoft.Owin version 2.0.0. But the latest available version of Microsoft.Owin in the public feed is 2.0.2. To fix this assembly binding issue when you install the same SignalR packages on a console application or a web application you will see assembly binding redirects being automatically added for you in the app.config. Due to an issue with Nuget client this is not happening in case of worker role projects. To fix this issue add this to your worker role project's app.config (Alternatively try adding your signalR package to a console app and copy paste the binding redirects from its app.config):</p> <pre><code>&lt;runtime&gt; &lt;assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"&gt; &lt;dependentAssembly&gt; &lt;assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" /&gt; &lt;bindingRedirect oldVersion="0.0.0.0-2.0.2.0" newVersion="2.0.2.0" /&gt; &lt;/dependentAssembly&gt; &lt;dependentAssembly&gt; &lt;assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" culture="neutral" /&gt; &lt;bindingRedirect oldVersion="0.0.0.0-2.0.2.0" newVersion="2.0.2.0" /&gt; &lt;/dependentAssembly&gt; &lt;/assemblyBinding&gt; &lt;/runtime&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload