Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Microsoft.Owin.Security 3.0.1 is out of date #264

Open
CraigLager opened this issue Oct 11, 2019 · 1 comment
Open

Microsoft.Owin.Security 3.0.1 is out of date #264

CraigLager opened this issue Oct 11, 2019 · 1 comment

Comments

@CraigLager
Copy link

CraigLager commented Oct 11, 2019

This is a dependancy on Owin.Security.Providers.Instagram

Latest version is 4.0.x, which wont be loaded because of the major version change. Downgrading forces a downgrade of packages like Microsoft.Owin.Security.Facebook which are reliant on newer versions to work with the latest APIs.

@CraigLager
Copy link
Author

A workaround for now is putting this into web.config:

      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Owin"  publicKeyToken="31bf3856ad364e35"  culture="neutral" />
        <bindingRedirect oldVersion="3.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Owin.Security"  publicKeyToken="31bf3856ad364e35"  culture="neutral" />
        <bindingRedirect oldVersion="3.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Owin.Security.Cookies" publicKeyToken="31bf3856ad364e35" culture="neutral"/>
        <bindingRedirect oldVersion="3.0.1.0" newVersion="4.0.1.0"/>
      </dependentAssembly>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant