Skip to content

MSAL.NET 2.6.0 released

Jean-Marc Prieur edited this page Dec 7, 2018 · 20 revisions

MSAL.NET 2.6.0-preview released

Since MSAL.NET 2.2.0 released, there were a number of releases improving MSAL.NET based on your feedback but the changes were mainly communicated with the release notes. With MSAL.NET 2.6.0, we are getting one step further to our goal of removing the -preview tag on MSAL.NET. We thought it was useful to update you on the progress made.

MSAL.NET helps you build multi-platform applications more easily

MSAL.NET supports multiple platforms. When you want to write applications working on several platforms, you can create a library targeting the MSAL.NET .NET Standard platform. The problem is that, in the case of multi-target projects, the assembly actually used by .NET is different at coding or build time (IDE, msbuild), and at runtime (CLR). The picture below shows the case of a .NET Core application and an Android application which reference a shared code library targeting the .NET standard platform.

If you are interested in learning more about what is .NET standard, how .NET resolves platforms, what it means to build against .NET standard and what happens at runtime, read Understanding multi targetting and NetStandard.

Until MSAL.NET 2.6.0, there were differences between the public API surface exposed in the .NET Standard: the platforms could have more APIs than .NET standard, which was making your life difficult. You basically had to create multi-platform projects yourself, and use conditional compilation. Also because the edit/build time and runtime assembly resolution is different, and the public API was different, you could get some MethodNotImplemented exceptions.

With MSAL.NET 2.6.0, the public API of the .NET Standard platform was re-thought so that you can more easily build cross-platform libraries.

MSAL.NET provides a better .NET Standard platform

MSAL.NET adds reference assemblies

Better support for Azure AD B2C

MSAL.NET now supports b2clogin.com (from 2.5.0)

Improved experience with EditProfile, ResetPassword and other policies where the user should not re-sign-in

Improved support for non-connected mode

Improved error messages

Notable bug fixes (HasStateChanged)

Getting started with MSAL.NET

Acquiring tokens

Desktop/Mobile apps

Web Apps / Web APIs / daemon apps

Advanced topics

News

FAQ

Other resources

Clone this wiki locally