Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Merge pull request #86 from Azure-Samples/jennyf/msal4.6
Browse files Browse the repository at this point in the history
update to 4.6 and use b2clogin.com
  • Loading branch information
jennyf19 committed Nov 4, 2019
2 parents 518c7cf + 304a856 commit 1bd9829
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion WebApp-OpenIDConnect-DotNet/AzureAdB2COptions.cs
Expand Up @@ -11,7 +11,7 @@ public class AzureAdB2COptions

public AzureAdB2COptions()
{
AzureAdB2CInstance = "https://login.microsoftonline.com/tfp";
AzureAdB2CInstance = "https://fabrikamb2c.b2clogin.com/tfp";
}

public string ClientId { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion WebApp-OpenIDConnect-DotNet/Controllers/HomeController.cs
Expand Up @@ -31,7 +31,7 @@ public IActionResult Index()
[Authorize]
public IActionResult About()
{
ViewData["Message"] = String.Format("Claims available for the user {0}", (User.FindFirst("name")?.Value));
ViewData["Message"] = string.Format("Claims available for the user {0}", (User.FindFirst("name")?.Value));
return View();
}

Expand Down
Expand Up @@ -4,7 +4,7 @@
<RootNamespace>WebApp_OpenIDConnect_DotNet</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Identity.Client" Version="4.5.0" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.6.0" />
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="2.2.0" />
Expand Down

0 comments on commit 1bd9829

Please sign in to comment.