Skip to content

Commit b2eadca

Browse files
author
James Brundage
committed
docs: Documentating Examples Should Work Order
1 parent 4ac17f1 commit b2eadca

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Build/PipeScript.ExamplesShouldWork.build.ps1

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@
1515
# If the pattern is found, then the script will run.
1616
# If the pattern is not found, then the script will not run (and this will be written as a warning and noted in the build summary)
1717
)]
18-
[Reflection.AssemblyMetadata("Order",1kb)]
18+
[Reflection.AssemblyMetadata(
19+
# Order impacts the order in which commands run. A lower order will run sooner, a higher order will run later.
20+
# The default order is 0.
21+
"Order",
22+
1kb # by indicating an Order of 1kb, we are really saying "run later than most things"
23+
)]
1924
param(
2025
# The name of the module containing examples
2126
$ModuleName = 'PipeScript'

0 commit comments

Comments
 (0)