From 6a0c0f5aee0abbe18fe829f99bef8e77af744c49 Mon Sep 17 00:00:00 2001 From: Gladwin Johnson <90415114+gladjohn@users.noreply.github.com> Date: Wed, 12 Jul 2023 10:42:57 -0700 Subject: [PATCH] [OneBranch] Adding UAP back into the pipeline (#4228) * Update Microsoft.Identity.Client.csproj * Update Microsoft.Identity.Client.csproj * Update Microsoft.Identity.Client.csproj * Update MainPage.xaml.cs * Update Microsoft.Identity.Client.csproj * Update Microsoft.Identity.Client.csproj --- .../Microsoft.Identity.Client.csproj | 6 +----- tests/devapps/WAM/UWPWam/MainPage.xaml.cs | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/client/Microsoft.Identity.Client/Microsoft.Identity.Client.csproj b/src/client/Microsoft.Identity.Client/Microsoft.Identity.Client.csproj index 5a42d6799d..22e48d2c1b 100644 --- a/src/client/Microsoft.Identity.Client/Microsoft.Identity.Client.csproj +++ b/src/client/Microsoft.Identity.Client/Microsoft.Identity.Client.csproj @@ -17,10 +17,6 @@ MonoAndroid10.0 net6.0-android net6.0-ios15.4 - - - - uap10.0.17763 @@ -234,7 +230,7 @@ - + diff --git a/tests/devapps/WAM/UWPWam/MainPage.xaml.cs b/tests/devapps/WAM/UWPWam/MainPage.xaml.cs index 913606e89b..fe2a247be6 100644 --- a/tests/devapps/WAM/UWPWam/MainPage.xaml.cs +++ b/tests/devapps/WAM/UWPWam/MainPage.xaml.cs @@ -48,7 +48,7 @@ private IPublicClientApplication CreatePublicClient() var pca = PublicClientApplicationBuilder.Create(s_clientID) .WithAuthority(s_authority) .WithBroker(chkUseBroker.IsChecked.Value) - //.WithWindowsBrokerOptions(new WindowsBrokerOptions() { HeaderText = "aaa" }) + .WithWindowsBrokerOptions(new WindowsBrokerOptions() { HeaderText = "aaa" }) .WithLogging((x, y, z) => Debug.WriteLine($"{x} {y}"), LogLevel.Verbose, true) .Build();