From 850b2e9bbc7c44724c01c248340653308642dafd Mon Sep 17 00:00:00 2001 From: Shane Weaver Date: Tue, 31 Aug 2021 16:11:25 -0700 Subject: [PATCH 1/2] Update dead link in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a91c5dd..6276096 100644 --- a/README.md +++ b/README.md @@ -70,8 +70,8 @@ Leverage the official Microsoft Authentication Library (MSAL) to enable authenti Try out the WindowsProvider to enable authentication based on the native Windows Account Manager (WAM) APIs in your UWP apps, without requiring a dependency on MSAL. -1. Associate your app with the Microsoft Store. The app association will act as our minimal app registration for authenticating consumer MSAs. See the [WindowsProvider docs](https://github.com/CommunityToolkit/Graph-Controls/edit/main/Docs/WindowsProvider.md) for more details. -1. Install the `CommunityToolkit.Authentication.Uwp` package +1. Associate your app with the Microsoft Store. The app association will act as our minimal app registration for authenticating consumer MSAs. See the [WindowsProvider docs](https://docs.microsoft.com/windows/communitytoolkit/graph/authentication/windows) for more details. +1. Install the `CommunityToolkit.Authentication.Uwp` package. 1. Set the GlobalProvider to a new instance of WindowsProvider with pre-configured scopes: ```csharp From dd43de6bbf2d21e4c6c1eea8b5d1b6adf934e48f Mon Sep 17 00:00:00 2001 From: Shane Weaver Date: Tue, 31 Aug 2021 16:16:56 -0700 Subject: [PATCH 2/2] =?UTF-8?q?Updated=20typo:=20Mananager=20=F0=9F=8D=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6276096..2d70ff7 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ ProviderManager.Instance.ProviderStateChanged += OnProviderStateChanged; void OnProviderStateChanged(object sender, ProviderStateChangedEventArgs args) { - var provider = ProviderMananager.Instance.GlobalProvider; + var provider = ProviderManager.Instance.GlobalProvider; if (provider?.State == ProviderState.SignedIn) { var graphClient = provider.GetClient();