We are starting with Azure AD to implement SSO on a website developed with webforms and Office 365, so I was reading about it, and as far as I understand, we need to use some nuggets like these
PM> Install-Package Microsoft.Owin.Security.OpenIdConnect
PM> Install-Package Microsoft.Owin.Security.Cookies
PM> Install-Package Microsoft.Owin.Host.SystemWeb
Now, to install it, we need the 4.5 .NET framework on our project, but it was developed using 4.0 framework.
Does anyone know what's the best approach to connect a webform 4.0 web application to Azure AD? All the information I have found on Microsoft documentation is oriented to MVC and uses libraries like 4.5 OWINs
Thanks in advance