diff --git a/docs/detector-arguments.md b/docs/detector-arguments.md index 9bbcf4d91..9dc2ab7b1 100644 --- a/docs/detector-arguments.md +++ b/docs/detector-arguments.md @@ -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 diff --git a/src/Microsoft.ComponentDetection.Orchestrator/Commands/ScanSettings.cs b/src/Microsoft.ComponentDetection.Orchestrator/Commands/ScanSettings.cs index d180c236e..021a24d69 100644 --- a/src/Microsoft.ComponentDetection.Orchestrator/Commands/ScanSettings.cs +++ b/src/Microsoft.ComponentDetection.Orchestrator/Commands/ScanSettings.cs @@ -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 DetectorCategories { get; set; }