Skip to content

Commit

Permalink
re-add wilson for just .net 5 (#1129)
Browse files Browse the repository at this point in the history
  • Loading branch information
jennyf19 authored Apr 8, 2021
1 parent 597d054 commit 0718cbb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/Microsoft.Identity.Web/Microsoft.Identity.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0' ">
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="5.0.0-*" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="5.0.0-*" />
<PackageReference Include="Microsoft.IdentityModel.Logging" Version="6.10.*" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="6.10.*" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.10.*" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1' ">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,18 @@
<ProjectReference Include="..\..\..\src\Microsoft.Identity.Web.MicrosoftGraph\Microsoft.Identity.Web.MicrosoftGraph.csproj" />
<ProjectReference Include="..\..\..\src\Microsoft.Identity.Web\Microsoft.Identity.Web.csproj" />
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="5.0.1" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="6.8.0" />
<PackageReference Include="StackExchange.Redis" Version="2.2.4" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net5.0' ">
<PackageReference Include="Microsoft.IdentityModel.Logging" Version="6.10.*" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="6.10.*" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.10.*" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1' ">
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.8.0" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="6.8.0" />
</ItemGroup>

</Project>

0 comments on commit 0718cbb

Please sign in to comment.