Skip to content

Commit 0dd7de9

Browse files
committed
ls -> gci
1 parent 455da01 commit 0dd7de9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Build.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ $buildSuffix = @{ $true = "$($suffix)-$($commitHash)"; $false = "$($branch)-$($c
1818
echo "build: Package version suffix is $suffix"
1919
echo "build: Build version suffix is $buildSuffix"
2020

21-
foreach ($src in ls src/*) {
21+
foreach ($src in gci src/*) {
2222
Push-Location $src
2323

2424
echo "build: Packaging project in $src"
@@ -35,7 +35,7 @@ foreach ($src in ls src/*) {
3535
Pop-Location
3636
}
3737

38-
foreach ($test in ls test/*.Tests) {
38+
foreach ($test in gci test/*.Tests) {
3939
Push-Location $test
4040

4141
echo "build: Testing project in $test"
@@ -46,7 +46,7 @@ foreach ($test in ls test/*.Tests) {
4646
Pop-Location
4747
}
4848

49-
foreach ($test in ls test/*.PerformanceTests) {
49+
foreach ($test in gci test/*.PerformanceTests) {
5050
Push-Location $test
5151

5252
echo "build: Building performance test project in $test"

0 commit comments

Comments
 (0)