Skip to content
Open
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 @@ -23,6 +23,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Formats.Asn1" Version="10.0.2" />
Copy link

Copilot AI Jan 29, 2026

Choose a reason for hiding this comment

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

This adds a new direct NuGet dependency to the produced package. If the intent is only to override a transitive version for this project (and not force downstream consumers to take a dependency on System.Formats.Asn1), consider marking it as PrivateAssets="all" (or using an equivalent version-pinning approach) to avoid changing the dependency surface. Also double-check that the chosen 10.0.2 version is compatible with this project’s net9.0 target to prevent restore/runtime binding issues.

Copilot uses AI. Check for mistakes.
<PackageReference Include="System.Security.Cryptography.Cng" Version="5.0.0" />
</ItemGroup>

Expand Down
Loading