Skip to content
Draft
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.411",
Copy link
Contributor

Choose a reason for hiding this comment

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

@copilot revert this change

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Reverted the global.json change in commit 7c8603b.

"version": "8.0.117",
"rollForward": "latestFeature"
}
}
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