Skip to content

Commit 0ef45f1

Browse files
committed
All 3 new detectors now are marked as experimental.
1 parent d20304a commit 0ef45f1

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/Microsoft.ComponentDetection.Detectors/dockercompose/DockerComposeComponentDetector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace Microsoft.ComponentDetection.Detectors.DockerCompose;
1313
using Microsoft.Extensions.Logging;
1414
using YamlDotNet.RepresentationModel;
1515

16-
public class DockerComposeComponentDetector : FileComponentDetector, IDefaultOffComponentDetector
16+
public class DockerComposeComponentDetector : FileComponentDetector, IDefaultOffComponentDetector, IExperimentalDetector
1717
{
1818
public DockerComposeComponentDetector(
1919
IComponentStreamEnumerableFactory componentStreamEnumerableFactory,

src/Microsoft.ComponentDetection.Detectors/helm/HelmComponentDetector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace Microsoft.ComponentDetection.Detectors.Helm;
1515
using Microsoft.Extensions.Logging;
1616
using YamlDotNet.RepresentationModel;
1717

18-
public class HelmComponentDetector : FileComponentDetector, IDefaultOffComponentDetector
18+
public class HelmComponentDetector : FileComponentDetector, IDefaultOffComponentDetector, IExperimentalDetector
1919
{
2020
public HelmComponentDetector(
2121
IComponentStreamEnumerableFactory componentStreamEnumerableFactory,

src/Microsoft.ComponentDetection.Detectors/kubernetes/KubernetesComponentDetector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Microsoft.ComponentDetection.Detectors.Kubernetes;
1414
using YamlDotNet.Core;
1515
using YamlDotNet.RepresentationModel;
1616

17-
public class KubernetesComponentDetector : FileComponentDetector, IDefaultOffComponentDetector
17+
public class KubernetesComponentDetector : FileComponentDetector, IDefaultOffComponentDetector, IExperimentDetector
1818
{
1919
private static readonly HashSet<string> KubernetesKinds = new(StringComparer.OrdinalIgnoreCase)
2020
{

0 commit comments

Comments
 (0)