We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 512a04f + 8d4ad24 commit 83e0657Copy full SHA for 83e0657
1 file changed
MultiTarget/GenerateAllProjectReferences.ps1
@@ -14,7 +14,7 @@ Remove-Item -Path $projectPropsOutputDir -Recurse -Force -ErrorAction SilentlyCo
14
New-Item -ItemType Directory -Force -Path $projectPropsOutputDir -ErrorAction SilentlyContinue | Out-Null;
15
16
# Discover projects in provided paths
17
-foreach ($projectPath in Get-ChildItem -Directory -Depth 0 -Path "$PSScriptRoot/../../components/*") {
+foreach ($projectPath in Get-ChildItem -Directory -Path "$PSScriptRoot/../../components/*") {
18
$srcPath = Resolve-Path "$($projectPath.FullName)\src";
19
$srcProjectPath = Get-ChildItem -File "$srcPath\*.csproj";
20
0 commit comments