diff --git a/src/Microsoft.ComponentDetection.Contracts/IComponentDetector.cs b/src/Microsoft.ComponentDetection.Contracts/IComponentDetector.cs index 67f12603b..06691f648 100644 --- a/src/Microsoft.ComponentDetection.Contracts/IComponentDetector.cs +++ b/src/Microsoft.ComponentDetection.Contracts/IComponentDetector.cs @@ -1,4 +1,4 @@ -using System.Collections.Generic; +using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.ComponentDetection.Contracts.TypedComponent; @@ -53,7 +53,7 @@ public interface IDefaultOffComponentDetector : IComponentDetector /// /// Component detectors implementing this interface are in an experimental state. /// The detector processing service guarantees that: - /// They should NOT return their components as part of the scan result or be allowed to run too long (e.g. 2 min or less). + /// They should NOT return their components as part of the scan result or be allowed to run too long (e.g. 4 min or less). /// They SHOULD submit telemetry about how they ran. /// If opted in, they should behave like a normal detector. /// diff --git a/src/Microsoft.ComponentDetection.Detectors/vcpkg/VcpkgComponentDetector.cs b/src/Microsoft.ComponentDetection.Detectors/vcpkg/VcpkgComponentDetector.cs index f2195bb0f..1a4ecaf51 100644 --- a/src/Microsoft.ComponentDetection.Detectors/vcpkg/VcpkgComponentDetector.cs +++ b/src/Microsoft.ComponentDetection.Detectors/vcpkg/VcpkgComponentDetector.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Composition; using System.IO; @@ -13,7 +13,7 @@ namespace Microsoft.ComponentDetection.Detectors.Vcpkg { [Export(typeof(IComponentDetector))] - public class VcpkgComponentDetector : FileComponentDetector, IDefaultOffComponentDetector + public class VcpkgComponentDetector : FileComponentDetector, IExperimentalDetector { [Import] public ICommandLineInvocationService CommandLineInvocationService { get; set; } @@ -29,7 +29,7 @@ public class VcpkgComponentDetector : FileComponentDetector, IDefaultOffComponen public override IEnumerable SupportedComponentTypes { get; } = new[] { ComponentType.Vcpkg }; - public override int Version => 1; + public override int Version => 2; private HashSet projectRoots = new HashSet();