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
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AutoMapper" Version="14.0.0" />
<PackageReference Include="AutoMapper" Version="15.1.1" />
Copy link

Copilot AI Apr 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AutoMapper appears to be unused in the backend-api projects (no IMapper, Profile, AddAutoMapper, etc. found; only an unused using AutoMapper;). If there’s no runtime usage, consider removing this PackageReference rather than updating it to a new major version.

Suggested change
<PackageReference Include="AutoMapper" Version="15.1.1" />

Copilot uses AI. Check for mistakes.
<PackageReference Include="Azure.Data.AppConfiguration" Version="1.6.1" />
<PackageReference Include="Azure.Identity" Version="1.14.1" />
<PackageReference Include="Microsoft.Extensions.Azure" Version="1.12.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.6" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Configuration.AzureAppConfiguration" Version="8.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.6" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.6" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.5" />
Comment on lines +18 to +21
Copy link

Copilot AI Apr 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These Microsoft.Extensions.* package references are being updated to 10.0.5 while the project targets net8.0. For ASP.NET Core apps (Microsoft.NET.Sdk.Web), overriding the shared-framework Microsoft.Extensions assemblies with a higher major version can introduce runtime/assembly compatibility issues. Consider aligning these to the net8/ASP.NET Core 8.x wave (or removing the explicit references if not required) to avoid version skew.

Copilot uses AI. Check for mistakes.
<PackageReference Include="Microsoft.KernelMemory.WebClient" Version="0.79.241014.2" />
<PackageReference Include="Microsoft.SemanticKernel" Version="1.32.0" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.0" />
Expand Down
2 changes: 1 addition & 1 deletion App/backend-api/Microsoft.GS.DPS/Microsoft.GS.DPS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AutoMapper" Version="14.0.0" />
<PackageReference Include="AutoMapper" Version="15.1.1" />
Copy link

Copilot AI Apr 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AutoMapper appears to be unused in this backend-api codebase (search finds no usages beyond an unused using AutoMapper;). If it’s not needed, consider removing this PackageReference to reduce dependency surface area; otherwise, add/point to the code that requires AutoMapper so the dependency is justified.

Suggested change
<PackageReference Include="AutoMapper" Version="15.1.1" />

Copilot uses AI. Check for mistakes.
<PackageReference Include="Azure.Identity" Version="1.14.1" />
<PackageReference Include="Azure.Search.Documents" Version="11.6.1" />
<PackageReference Include="FluentValidation" Version="12.0.0" />
Expand Down
Loading
Loading