[K9VULN-9996] Support centralized package version management in .NET projects#93
Merged
piloulacdog merged 5 commits intomainfrom Dec 17, 2025
Conversation
Go test coverage reportTotal test coverage: 90.2% (4269/4732) Test coverage has changed in the current files, with 11 lines missing coverage. |
8989376 to
2036480
Compare
2036480 to
f5e8b29
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
👀 The two main commit of logic are:
🚀 Motivation
.NET repositories can centralize dependency version management using shared
.propsfiles (such asDirectory.Packages.props,Directory.Build.props, or custom.propsfiles). These files definePackageVersionor property values that are consumed by individual.csprojfiles through<Import Project="...">directives. This ticket implements support for resolving package versions from these centralized configuration files, enabling accurate SBOM generation for modern .NET projects that use Central Package Management (CPM).📝 Summary
This PR adds support for centralized package version management in .NET projects by:
.propsfiles: Implemented logic to discoverDirectory.Build.props,Directory.Packages.props, and custom.propsfiles through both explicit imports in.csprojfiles and MSBuild convention-based detection (searching parent directories).ManagePackageVersionsCentrallyversions if<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>is presentDirectory.Build.propsfiles🧪 Testing
🚧 Staging validation
📚 Documentation