We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c4590d commit 334a1b0Copy full SHA for 334a1b0
1 file changed
README.md
@@ -44,6 +44,14 @@ To find potentially mismatched listings in a chapter run,
44
`ListingManager -path "user/EssentialCSharp/src/Chapter03/" -mode ScanForMismatchedListings`. Potentially mismatched listings
45
will be printed to the console.
46
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
55
# Pushing new versions
56
57
0 commit comments