Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions MoneyManager.Api.Tests/MoneyManager.Api.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.8.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.9.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.18" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.19" />
<!-- Hosts the real app in-process for the Integration/ suite. Deliberately not paired with
an explicit Microsoft.IdentityModel.Tokens reference: the whole point of those tests is
to exercise the package set JwtBearer resolves on its own, so pinning it here would
defeat the check the same way pinning it in the API project would. Kept in step with the
ASP.NET Core version the API project references, so the test host and the app under test
load one set of assemblies. -->
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.18" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.19" />
</ItemGroup>

<ItemGroup>
Expand Down
14 changes: 7 additions & 7 deletions MoneyManager.Api/MoneyManager.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@

<ItemGroup>
<PackageReference Include="dotenv.net" Version="4.0.2" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.18" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.18" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.18" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.18">
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.19" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.19" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.19" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.19">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.10">
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.11">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="10.0.10" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="10.0.11" />
<!-- Microsoft.IdentityModel.Tokens is intentionally NOT pinned here. Pinning it to an
older version than the Microsoft.IdentityModel.JsonWebTokens that JwtBearer resolves
makes the handler call a Base64UrlEncoder overload that does not exist, and every
token fails validation with IDX14102 at runtime. Let JwtBearer pick a coherent set. -->
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.18" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.19" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading