Skip to content

Commit b3d0e7b

Browse files
committed
Fix to breaking change analyzer for experimental cmdlets.
1 parent 514b3f7 commit b3d0e7b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tools/StaticAnalysis/BreakingChangeAnalyzer/BreakingChangeAnalyzer.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ public void Analyze(
8585
foreach (var directory in probingDirectories)
8686
{
8787
var service = Path.GetFileName(directory);
88+
if (service.ToLower().EndsWith("experiments"))
89+
{
90+
return;
91+
}
8892

8993
var manifestFiles = Directory.EnumerateFiles(directory, "*.psd1").ToList();
9094

0 commit comments

Comments
 (0)