Trying to get Azure Active Directory setup and configured correctly. One sample uses UseWindowsAzureActiveDirectoryBearerAuthentication but when I try and add the necessary reference I get this error:
Attempting to resolve dependencies for package
'Microsoft.Owin.Security.ActiveDirectory.4.0.1' with DependencyBehavior
'Lowest'
Unable to find a version of 'AutoMapper' that is compatible with
'UmbracoCms.Core 7.13.2 constraint: AutoMapper (>= 3.3.1 && < 4.0.0)'.
I think the output is wrong, as 'Microsoft.Owin.Security.ActiveDirectory.4.0.1' doesn't have a dependency on 'AutoMapper'
I tried installing the packages in reverse order on a new WebApplication
Where I installed the packages in the following order
'Microsoft.Owin.Security.ActiveDirectory.4.0.1'
'UmbracoCms' version 7.13.2
Here is the error message in that case:
Unable to resolve dependencies. 'Microsoft.Owin.Security.OAuth 4.0.1' is not compatible with 'UmbracoCms.Core 7.13.2 constraint: Microsoft.Owin.Security.OAuth (>= 3.1.0 && < 4.0.0)'.
So it seems to be a compatibility issue between the Microsoft.Owin.Security.OAuth used by Umbraco and the one you are trying to install.
AutoMapper version conflict?
Trying to get Azure Active Directory setup and configured correctly. One sample uses UseWindowsAzureActiveDirectoryBearerAuthentication but when I try and add the necessary reference I get this error:
I have AutoMapper 3.3.1 installed.
I think the output is wrong, as 'Microsoft.Owin.Security.ActiveDirectory.4.0.1' doesn't have a dependency on 'AutoMapper'
I tried installing the packages in reverse order on a new WebApplication
Where I installed the packages in the following order
Here is the error message in that case:
Unable to resolve dependencies. 'Microsoft.Owin.Security.OAuth 4.0.1' is not compatible with 'UmbracoCms.Core 7.13.2 constraint: Microsoft.Owin.Security.OAuth (>= 3.1.0 && < 4.0.0)'.
So it seems to be a compatibility issue between the Microsoft.Owin.Security.OAuth used by Umbraco and the one you are trying to install.
is working on a reply...