Skip to content

Commit dc6413e

Browse files
committed
Merge branch 'docs/comment-tweak-link-on-convertfrom-json-limitation-in-src-scheduledtaskmanagement-public-setup-scheduledtask.ps1'
2 parents 5fb215d + ecdba1c commit dc6413e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ScheduledTaskManagement/Public/Setup-ScheduledTask.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function Setup-ScheduledTask {
4141
if ($AsJson) {
4242
# If multiple .json files are found, the resulting collection on PS 5.1 is a collection of the arrays of objects within each .json file's content rather than the objects themselves.
4343
# This results in a situation, where when looping over objects within $DefinitionsCollection, only the last object within each array is processed in the pipeline, leading to the serialization and creation / application of only those tasks.
44-
# This behavior appears related to a limitation of `ConvertFrom-Json` prior to PS 6.0: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/convertfrom-json?view=powershell-7.2#parameters and does not seem to affect parallel CI jobs on PS 7.2.6 .
44+
# This behavior appears related to a limitation of `ConvertFrom-Json` prior to PS 6.0: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/convertfrom-json#-ashashtable and does not seem to affect parallel CI jobs on PS 7.2.6 .
4545
# To ensure all objects are processed, return each object within the .json array object regardless of PS version.
4646
# Missing tasks: https://dev.azure.com/theohbrothers/ScheduledTaskManagement/_build/results?buildId=437&view=logs&j=a4c7e33e-604c-560c-49b1-4d6828efc661&t=3de151fa-1c49-59eb-ac4b-c29a43df6985
4747
# Missing and incorrect objects: https://dev.azure.com/theohbrothers/ScheduledTaskManagement/_build/results?buildId=448&view=logs&j=a4c7e33e-604c-560c-49b1-4d6828efc661&t=3de151fa-1c49-59eb-ac4b-c29a43df6985

0 commit comments

Comments
 (0)