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
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"dotnet-ef": {
"version": "10.0.8",
"version": "10.0.10",
"commands": [
"dotnet-ef"
],
Expand Down
14 changes: 7 additions & 7 deletions src/Taqyeem.Api/Taqyeem.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.5" />
<PackageReference Include="Microsoft.Identity.Web" Version="4.13.0" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.10" />
<PackageReference Include="Microsoft.Identity.Web" Version="4.13.2" />
<!-- Pin patched Microsoft.OpenApi (transitive 2.0.0 has advisory GHSA-v5pm-xwqc-g5wc). -->
<PackageReference Include="Microsoft.OpenApi" Version="2.10.0" />
<PackageReference Include="Microsoft.OpenApi" Version="2.11.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Taqyeem.Application\Taqyeem.Application.csproj" />
<ProjectReference Include="..\Taqyeem.Infrastructure\Taqyeem.Infrastructure.csproj" />
<ProjectReference Include="..\Taqyeem.ServiceDefaults\Taqyeem.ServiceDefaults.csproj" />
<ItemGroup>
<ProjectReference Include="..\Taqyeem.Application\Taqyeem.Application.csproj" />
<ProjectReference Include="..\Taqyeem.Infrastructure\Taqyeem.Infrastructure.csproj" />
<ProjectReference Include="..\Taqyeem.ServiceDefaults\Taqyeem.ServiceDefaults.csproj" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions src/Taqyeem.Application/Taqyeem.Application.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.8" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.10" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.10" />
</ItemGroup>

<PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/Taqyeem.Infrastructure/Taqyeem.Infrastructure.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
so a custom SqlAuthenticationProvider can acquire managed-identity tokens for Azure SQL.
The Extensions.Azure provider relies on reflection-based assembly loading that fails in
trimmed container publishes; a static reference here guarantees the assembly is included. -->
<PackageReference Include="Azure.Identity" Version="1.14.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.8">
<PackageReference Include="Azure.Identity" Version="1.21.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.10">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
14 changes: 7 additions & 7 deletions src/Taqyeem.ServiceDefaults/Taqyeem.ServiceDefaults.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />

<PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="10.6.0" />
<PackageReference Include="Microsoft.Extensions.ServiceDiscovery" Version="10.6.0" />
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.15.3" />
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.15.3" />
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.15.2" />
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.15.1" />
<PackageReference Include="OpenTelemetry.Instrumentation.Runtime" Version="1.15.1" />
<PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="10.8.0" />
<PackageReference Include="Microsoft.Extensions.ServiceDiscovery" Version="10.8.0" />
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.17.0" />
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.17.0" />
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.17.0" />
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.17.0" />
<PackageReference Include="OpenTelemetry.Instrumentation.Runtime" Version="1.17.0" />
<PackageReference Include="Azure.Monitor.OpenTelemetry.AspNetCore" Version="1.5.0" />
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions src/Taqyeem.Web/Taqyeem.Web.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<ItemGroup>
<ProjectReference Include="..\Taqyeem.ServiceDefaults\Taqyeem.ServiceDefaults.csproj" />
<ItemGroup>
<ProjectReference Include="..\Taqyeem.ServiceDefaults\Taqyeem.ServiceDefaults.csproj" />
</ItemGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MSTest" Version="4.0.2" />
<PackageReference Include="MSTest" Version="4.3.2" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading