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
5 changes: 4 additions & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
</PropertyGroup>

<PropertyGroup>
<BBVersion>10.*</BBVersion>
<BBVersion>10.0.0</BBVersion>
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.

The change from 10.* to 10.0.0 creates an inconsistency with other version properties in this file. Lines 29-33 use wildcard patterns (6.0.*, 7.0.*, etc.) for .NET versions, which allows automatic patch version updates. Pinning BBVersion to a specific version (10.0.0) means it will need manual updates for every patch release, while the .NET versions will update automatically. Consider whether this intentional difference is necessary, or if 10.* should be retained for consistency.

Suggested change
<BBVersion>10.0.0</BBVersion>
<BBVersion>10.*</BBVersion>

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

<PropertyGroup>
<NET6Version>6.0.*</NET6Version>
<NET7Version>7.0.*</NET7Version>
<NET8Version>8.0.*</NET8Version>
Expand Down