Skip to content

Commit 8d4ad24

Browse files
committed
Fixed CI errors caused by -Depth 0
1 parent 512a04f commit 8d4ad24

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

MultiTarget/GenerateAllProjectReferences.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Remove-Item -Path $projectPropsOutputDir -Recurse -Force -ErrorAction SilentlyCo
1414
New-Item -ItemType Directory -Force -Path $projectPropsOutputDir -ErrorAction SilentlyContinue | Out-Null;
1515

1616
# Discover projects in provided paths
17-
foreach ($projectPath in Get-ChildItem -Directory -Depth 0 -Path "$PSScriptRoot/../../components/*") {
17+
foreach ($projectPath in Get-ChildItem -Directory -Path "$PSScriptRoot/../../components/*") {
1818
$srcPath = Resolve-Path "$($projectPath.FullName)\src";
1919
$srcProjectPath = Get-ChildItem -File "$srcPath\*.csproj";
2020

0 commit comments

Comments
 (0)