Skip to content

Commit 83e0657

Browse files
authored
Merge pull request #25 from CommunityToolkit/fix/multitarget/ci-errors
Fixed CI errors caused by -Depth 0
2 parents 512a04f + 8d4ad24 commit 83e0657

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)