Skip to content

Commit 3db0703

Browse files
authored
Fix the issue that the CI fails for the new autorest module (#23736)
* Fix the issue that the CI fails for the new autorest module * Fix the issue that the CI fails for the new autorest module
1 parent 3df8a49 commit 3db0703

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/Gen2Master/MoveFromGeneration2Master.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ Function Move-Generation2Master {
142142
dotnet sln $slnFilePath add $_.FullName --solution-folder Accounts
143143
}
144144
}
145-
Get-ChildItem -Filter *.csproj -File -Path $DestPath -Recurse | ForEach-Object {
146-
dotnet sln $slnFilePath add $_.FullName
147-
}
145+
}
146+
Get-ChildItem -Filter *.csproj -File -Path $DestPath -Recurse | ForEach-Object {
147+
dotnet sln $slnFilePath add $_.FullName
148148
}
149149

150150
$Psd1Metadata.RequiredAssemblies = Unique-PathList $Psd1Metadata.RequiredAssemblies

0 commit comments

Comments
 (0)