Skip to content

Commit

Permalink
Update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
damienbod committed Jul 27, 2023
1 parent 91288b9 commit 7c1aacd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
12 changes: 6 additions & 6 deletions EmployeePaycheck/EmployeePaycheck.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Identity.Web" Version="2.12.4" />
<PackageReference Include="Microsoft.Identity.Web.UI" Version="2.12.4" />
<PackageReference Include="Microsoft.Extensions.Localization" Version="7.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="7.0.8" />
<PackageReference Include="NetEscapades.AspNetCore.SecurityHeaders" Version="0.19.0" />
<PackageReference Include="NetEscapades.AspNetCore.SecurityHeaders.TagHelpers" Version="0.19.0" />
<PackageReference Include="Microsoft.Identity.Web" Version="2.13.1" />
<PackageReference Include="Microsoft.Identity.Web.UI" Version="2.13.1" />
<PackageReference Include="Microsoft.Extensions.Localization" Version="7.0.9" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="7.0.9" />
<PackageReference Include="NetEscapades.AspNetCore.SecurityHeaders" Version="0.20.0" />
<PackageReference Include="NetEscapades.AspNetCore.SecurityHeaders.TagHelpers" Version="0.20.0" />
</ItemGroup>

</Project>
6 changes: 4 additions & 2 deletions EmployeePaycheck/Services/EmployeeClaims.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Text.Json.Serialization;
using System.Text.Json.Serialization;

namespace EmployeePaycheck.Services;

Expand All @@ -18,6 +18,8 @@ public class EmployeeClaims
public string DisplayName { get; set; } = string.Empty;
[JsonPropertyName("preferredLanguage")]
public string PreferredLanguage { get; set; } = string.Empty;
[JsonPropertyName("userPrincipalName")]

//[JsonPropertyName("userPrincipalName")]
[JsonPropertyName("revocationId")]
public string RevocationId { get; set; } = string.Empty;
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ https://employeepaycheck.azurewebsites.net

## History

- 2023-07-27 Updated packages
- 2023-07-06 Update flows and added deployment

- 2023-07-04 Initial version

## User secrets and verify configuration
Expand Down

0 comments on commit 7c1aacd

Please sign in to comment.