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

<PropertyGroup>
<Version>9.0.6</Version>
<PropertyGroup Condition="'$(VisualStudioVersion)' == '17.0'">
<Version>9.0.7</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(VisualStudioVersion)' == '18.0'">
<Version>10.0.0-rc.2.1.0</Version>
</PropertyGroup>
Comment on lines +7 to 9
Copy link

Copilot AI Nov 6, 2025

Choose a reason for hiding this comment

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

[nitpick] The conditional versioning approach based on VisualStudioVersion property is inconsistent with the BootstrapBlazor.Topology.csproj file in the same repository, which uses a single unconditional ItemGroup for the BootstrapBlazor package reference. Consider whether this conditional approach is necessary for this specific component or if it should follow the simpler pattern used in Topology.

Copilot uses AI. Check for mistakes.

<PropertyGroup>
<PackageTags>Bootstrap Blazor WebAssembly wasm UI Components Icon</PackageTags>
<Description>Bootstrap UI components extensions of OctIcon</Description>
</PropertyGroup>

<ItemGroup>
<ItemGroup Condition="'$(VisualStudioVersion)' == '17.0'">
<PackageReference Include="BootstrapBlazor" Version="$(BBVersion)" />
Copy link

Copilot AI Nov 6, 2025

Choose a reason for hiding this comment

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

The BootstrapBlazor package reference for VS 17.0 uses $(BBVersion) variable which is not defined in this project file, while VS 18.0 uses a hardcoded version. This inconsistency could cause build issues. Based on other similar projects (e.g., BootstrapBlazor.Region uses '9.12.0', BootstrapBlazor.Html2Pdf uses '9.12.0'), consider either defining the BBVersion property or using a specific version like the other files in the codebase.

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

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

<ItemGroup Condition="'$(VisualStudioVersion)' == '18.0'">
<PackageReference Include="BootstrapBlazor" Version="10.0.0-rc.2.1.0" />
</ItemGroup>

</Project>
1 change: 1 addition & 0 deletions src/components/BootstrapBlazor.OctIcon/wwwroot/octicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/UnitTestSvgIcon/OctIcon/octicons.zip
Binary file not shown.