Skip to content

Commit 334a1b0

Browse files
Update Readme with all chapter run instructions
1 parent 7c4590d commit 334a1b0

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,14 @@ To find potentially mismatched listings in a chapter run,
4444
`ListingManager -path "user/EssentialCSharp/src/Chapter03/" -mode ScanForMismatchedListings`. Potentially mismatched listings
4545
will be printed to the console.
4646

47+
To run all chapters in powershell from ListingManager directory,
48+
Get-ChildItem -Path 'insert.srcPathNameHere' -Directory | Where-Object {
49+
!$_.name.EndsWith("Tests")
50+
} | ForEach-Object {
51+
listingmanager --path $_.FullName --preview --verbose
52+
}
53+
54+
4755
# Pushing new versions
4856

4957

0 commit comments

Comments
 (0)