Skip to content
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