Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
update idmodel nugets
Browse files Browse the repository at this point in the history
  • Loading branch information
brockallen committed Jan 5, 2018
1 parent 5db9425 commit 666d76d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/IdentityServer4/Extensions/PrincipalExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public static class PrincipalExtensions
[DebuggerStepThrough]
public static DateTime GetAuthenticationTime(this IPrincipal principal)
{
return principal.GetAuthenticationTimeEpoch().ToDateTimeFromEpoch();
return ((int)principal.GetAuthenticationTimeEpoch()).ToDateTimeFromEpoch();
}

/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions src/IdentityServer4/IdentityServer4.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="2.0.0" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.1.5" />
<PackageReference Include="IdentityModel" Version="3.0.0-aberfeldy" />
<PackageReference Include="IdentityModel" Version="3.0.0" />
<PackageReference Include="System.Security.Cryptography.Cng" Version="4.4.0" />
<PackageReference Include="SourceLink.Embed.AllSourceFiles" Version="2.6.1" PrivateAssets="all" />
<PackageReference Include="SourceLink.Embed.AllSourceFiles" Version="2.7.4" PrivateAssets="all" />
</ItemGroup>
</Project>

0 comments on commit 666d76d

Please sign in to comment.