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
2 changes: 1 addition & 1 deletion Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<PackageReference Update="Microsoft.Extensions.Logging.Abstractions" Version="$(MicrosoftExtensionsVersion)" />
<PackageReference Update="Microsoft.NETCore.Platforms" Version="$(SystemVersion)" />
<PackageReference Update="NuGet.CommandLine" Version="1.*" />
<PackageReference Update="Oxpecker" Version="1.3.*" />
<PackageReference Update="Oxpecker" Version="2.*" />
Copy link

Copilot AI Apr 19, 2026

Choose a reason for hiding this comment

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

Using a floating major-minor range (2.*) can make restores non-deterministic over time (different 2.x versions may be selected depending on when/where restore runs). If the goal is to upgrade to v2 while keeping builds reproducible and limiting unexpected changes, prefer pinning to a narrower band (e.g., 2.0.* to stay within the 2.0 minor line) or an explicit version.

Suggested change
<PackageReference Update="Oxpecker" Version="2.*" />
<PackageReference Update="Oxpecker" Version="2.0.*" />

Copilot uses AI. Check for mistakes.
<PackageReference Update="System.CodeDom" Version="$(SystemVersion)" />
<PackageReference Update="System.Collections.Immutable" Version="$(SystemVersion)" />
<PackageReference Update="System.Diagnostics.DiagnosticSource" Version="$(SystemVersion)" />
Expand Down