From 9c1753924311af033bbd023142242aac333261ea Mon Sep 17 00:00:00 2001 From: Eric StJohn Date: Fri, 15 Nov 2024 10:19:47 -0800 Subject: [PATCH] Fix DetectorsFilter parameter --- .../Commands/ScanSettings.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Microsoft.ComponentDetection.Orchestrator/Commands/ScanSettings.cs b/src/Microsoft.ComponentDetection.Orchestrator/Commands/ScanSettings.cs index f62439b30..35052eedb 100644 --- a/src/Microsoft.ComponentDetection.Orchestrator/Commands/ScanSettings.cs +++ b/src/Microsoft.ComponentDetection.Orchestrator/Commands/ScanSettings.cs @@ -53,6 +53,7 @@ public class ScanSettings : BaseSettings [CommandOption("--DetectorsFilter")] [Description( "A comma separated list with the identifiers of the specific detectors to be used. This is meant to be used for testing purposes only.")] + [TypeConverter(typeof(CommaDelimitedConverter))] public IEnumerable DetectorsFilter { get; set; } [CommandOption("--ManifestFile")]