Skip to content
Closed
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
30 changes: 15 additions & 15 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,30 @@
ASP.NET Core & EF Core
======================================================================== -->
<ItemGroup>
<PackageVersion Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.13" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Google" Version="9.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Facebook" Version="9.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="9.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.13" />
<PackageVersion Include="Microsoft.AspNetCore.Identity.UI" Version="9.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="9.0.13" />
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="9.0.13" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.13" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.14" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Google" Version="9.0.14" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Facebook" Version="9.0.14" />
<PackageVersion Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="9.0.14" />
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.14" />
<PackageVersion Include="Microsoft.AspNetCore.Identity.UI" Version="9.0.14" />
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="9.0.14" />
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="9.0.14" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.14" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.13" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.13" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.14" />
<PackageVersion Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
</ItemGroup>

<!-- ========================================================================
Microsoft Extensions
======================================================================== -->
<ItemGroup>
<PackageVersion Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="9.0.13" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.13" />
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.13" />
<PackageVersion Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="9.0.14" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.14" />
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.14" />
<PackageVersion Include="Microsoft.Extensions.Http.Resilience" Version="9.10.0" />
<PackageVersion Include="Microsoft.Extensions.Localization" Version="9.0.13" />
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.13" />
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.14" />
<PackageVersion Include="Microsoft.IO.RecyclableMemoryStream" Version="3.0.1" />
</ItemGroup>

Expand Down Expand Up @@ -132,7 +132,7 @@
<PackageVersion Include="SendGrid" Version="9.29.3" />
<PackageVersion Include="Twilio" Version="7.8.0" />
<PackageVersion Include="FirebaseAdmin" Version="3.2.0" />
<PackageVersion Include="System.IdentityModel.Tokens.Jwt" Version="8.3.1" />
<PackageVersion Include="System.IdentityModel.Tokens.Jwt" Version="8.16.0" />
</ItemGroup>

<!-- ========================================================================
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="System.IdentityModel.Tokens.Jwt" VersionOverride="8.16.0" />
<ProjectReference Include="..\BuildingBlocks.Infrastructure\BuildingBlocks.Infrastructure.csproj" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" VersionOverride="6.0.4" />
<Compile Remove="Events\IVersionedEvent.cs" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<ItemGroup>
<!-- GrpcServices="Both" generates BidGrpcBase (for Bidding.Api server) and
BidGrpcClient (for consumers needing to query bids) in a single assembly. -->
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" VersionOverride="6.0.4" />
<Protobuf Include="Grpc\bids.proto" GrpcServices="Both" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
<ItemGroup>
<!-- GrpcServices="Both" generates UserStatsGrpcBase (for Identity.Api) and
UserStatsGrpcClient (for consumers) — no re-compilation in downstream projects. -->
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" VersionOverride="6.0.4" />
<Protobuf Include="Grpc\user_stats.proto" GrpcServices="Both" />
</ItemGroup>

Expand Down
Loading