Skip to content

Commit

Permalink
update to msal 4.8.1 and remove password reset button (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
jennyf19 authored Jan 29, 2020
1 parent d1514e8 commit 84eeb52
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 10 deletions.
1 change: 0 additions & 1 deletion UserDetailsClient/UserDetailsClient.Core/MainPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
</StackLayout>
</StackLayout>
<BoxView Color="Transparent" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand" />
<Button x:Name="btnResetPassword" Text="Reset Password" Clicked="OnResetPassword" VerticalOptions="End" HorizontalOptions="FillAndExpand"/>
<Button x:Name="btnEditProfile" Text="Edit Profile" Clicked="OnEditProfile" VerticalOptions="End" HorizontalOptions="FillAndExpand"/>
<Button x:Name="btnCallApi" Text="Call API" Clicked="OnCallApi" VerticalOptions="End" HorizontalOptions="FillAndExpand"/>
<Button x:Name="btnSignInSignOut" Text="Sign in" Clicked="OnSignInSignOut" VerticalOptions="End" HorizontalOptions="FillAndExpand"/>
Expand Down
2 changes: 1 addition & 1 deletion UserDetailsClient/UserDetailsClient.Core/MainPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ async void OnCallApi(object sender, EventArgs e)
lblApi.Text = $"Response from API {App.ApiEndpoint} | {responseString}";
}
else
{
{
lblApi.Text = $"Error calling API {App.ApiEndpoint} | {responseString}";
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="System.Net.Http" Version="4.3.3" />
<PackageReference Include="Xamarin.Forms" Version="3.0.0.530893" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.6.0" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.8.1" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
<ItemGroup>
<Reference Include="Java.Interop" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.Identity.Client, Version=4.7.1.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae, processorArchitecture=MSIL">
<HintPath>..\..\packages\Microsoft.Identity.Client.4.7.1\lib\monoandroid90\Microsoft.Identity.Client.dll</HintPath>
<Reference Include="Microsoft.Identity.Client, Version=4.8.1.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae, processorArchitecture=MSIL">
<HintPath>..\..\packages\Microsoft.Identity.Client.4.8.1\lib\monoandroid90\Microsoft.Identity.Client.dll</HintPath>
</Reference>
<Reference Include="Mono.Android" />
<Reference Include="mscorlib" />
Expand Down
2 changes: 1 addition & 1 deletion UserDetailsClient/UserDetailsClient.Droid/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<packages>
<package id="AsyncUsageAnalyzers" version="1.0.0-alpha003" targetFramework="monoandroid81" developmentDependency="true" />
<package id="Microsoft.CSharp" version="4.5.0" targetFramework="monoandroid81" />
<package id="Microsoft.Identity.Client" version="4.7.1" targetFramework="monoandroid90" />
<package id="Microsoft.Identity.Client" version="4.8.1" targetFramework="monoandroid90" />
<package id="Microsoft.NETCore.Platforms" version="2.1.0" targetFramework="monoandroid81" />
<package id="Microsoft.NETCore.Targets" version="1.1.3" targetFramework="monoandroid90" />
<package id="Microsoft.Win32.Primitives" version="4.3.0" targetFramework="monoandroid60" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Identity.Client">
<Version>4.7.1</Version>
<Version>4.8.1</Version>
</PackageReference>
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
<Version>6.1.4</Version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.Identity.Client, Version=4.7.1.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae, processorArchitecture=MSIL">
<HintPath>..\..\packages\Microsoft.Identity.Client.4.7.1\lib\xamarinios10\Microsoft.Identity.Client.dll</HintPath>
<Reference Include="Microsoft.Identity.Client, Version=4.8.1.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae, processorArchitecture=MSIL">
<HintPath>..\..\packages\Microsoft.Identity.Client.4.8.1\lib\xamarinios10\Microsoft.Identity.Client.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.IdentityModel" />
Expand Down
1 change: 0 additions & 1 deletion UserDetailsClient/UserDetailsClient.iOS/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<packages>
<package id="AsyncUsageAnalyzers" version="1.0.0-alpha003" targetFramework="xamarinios10" developmentDependency="true" />
<package id="Microsoft.CSharp" version="4.5.0" targetFramework="xamarinios10" />
<package id="Microsoft.Identity.Client" version="4.7.1" targetFramework="xamarinios10" />
<package id="Microsoft.NETCore.Platforms" version="1.1.1" targetFramework="xamarinios10" />
<package id="Microsoft.NETCore.Targets" version="1.1.3" targetFramework="xamarinios10" />
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="xamarinios10" />
Expand Down

0 comments on commit 84eeb52

Please sign in to comment.