Skip to content
Merged
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
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<Version>10.0.1</Version>
<Version>9.0.6</Version>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BootstrapBlazor" Version="$(BBVersion)" />
<PackageReference Include="BootstrapBlazor" Version="9.0.0" />
Copy link

Copilot AI Dec 1, 2025

Choose a reason for hiding this comment

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

Hardcoding the BootstrapBlazor version removes the benefit of centralized version management via $(BBVersion). This makes it harder to maintain consistency across multiple projects and requires manual updates in each location when the version changes. Consider keeping the variable reference or documenting why this specific component requires a hardcoded version.

Suggested change
<PackageReference Include="BootstrapBlazor" Version="9.0.0" />
<PackageReference Include="BootstrapBlazor" Version="$(BBVersion)" />

Copilot uses AI. Check for mistakes.
</ItemGroup>

<ItemGroup>
Expand Down