You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to migrate my asp.net project from sql-membership to identity. To do this, I needed to install nuget packages such as:
Microsoft.aspnet.identity.owin
Microsoft.owin.security.google
Microsoft.owin.security.microsoftaccount
And I get a message that Microsoft.owin can't be installed because its not up to date with framework 4.5
The text was updated successfully, but these errors were encountered:
@gidmeister2
In order to use update-package on nuget you should change your package.config to limit upper version, as below: <package id="Microsoft.Owin" version="3.1.0" targetFramework="net45" allowedVersions="[,4)" />
@mqueirozcorreia the nuget page UI is not something package authors have any control over. It primary shows target frameworks when your package targets multiple.
I'm trying to migrate my asp.net project from sql-membership to identity. To do this, I needed to install nuget packages such as:
Microsoft.aspnet.identity.owin
Microsoft.owin.security.google
Microsoft.owin.security.microsoftaccount
And I get a message that Microsoft.owin can't be installed because its not up to date with framework 4.5
The text was updated successfully, but these errors were encountered: