Skip to content

Fix DetectorCategories documentation - replace Pip with Python and add missing categories #1446

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
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
5 changes: 3 additions & 2 deletions docs/detector-arguments.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ dotnet run --project "src\Microsoft.ComponentDetection\Microsoft.ComponentDetect
components that are going to be scanned. The
detectors that are going to run are the ones that
belongs to the categories.The possible values are:
Npm, NuGet, Maven, RubyGems, Cargo, Pip, GoMod,
CocoaPods, Linux.
Cargo, CocoaPods, Conan, Conda, DotNet,
DockerReference, GoMod, Linux, Maven, Npm, NuGet,
Python, RubyGems, Rust, Spdx, Swift, Vcpkg.

--DetectorsFilter A comma separated list with the identifiers of the
specific detectors to be used. This is meant to be
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class ScanSettings : BaseSettings

[CommandOption("--DetectorCategories")]
[Description(
"A comma separated list with the categories of components that are going to be scanned. The detectors that are going to run are the ones that belongs to the categories. The possible values are: Npm, NuGet, Maven, RubyGems, Cargo, Pip, GoMod, CocoaPods, Linux.")]
"A comma separated list with the categories of components that are going to be scanned. The detectors that are going to run are the ones that belongs to the categories. The possible values are: Cargo, CocoaPods, Conan, Conda, DotNet, DockerReference, GoMod, Linux, Maven, Npm, NuGet, Python, RubyGems, Rust, Spdx, Swift, Vcpkg.")]
[TypeConverter(typeof(CommaDelimitedConverter))]
public IEnumerable<string> DetectorCategories { get; set; }

Expand Down