From 11852a98506f99fdad1fa3f3686916efb1d61561 Mon Sep 17 00:00:00 2001 From: Bernie White Date: Thu, 21 Nov 2024 22:37:22 +1000 Subject: [PATCH] Update SDK config (#2620) --- global.json | 8 ++++++-- schemas/PSRule-language.schema.json | 12 ++++++------ 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/global.json b/global.json index c74d235383..e50f2843ae 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,10 @@ { + "msbuild-sdks": { + "Microsoft.Build.NoTargets": "3.7.56" + }, "sdk": { - "version": "8.0.400", - "rollForward": "latestFeature" + "allowPrerelease": false, + "version": "8.0.404", + "rollForward": "latestPatch" } } diff --git a/schemas/PSRule-language.schema.json b/schemas/PSRule-language.schema.json index f839d33d5a..bbc416d993 100644 --- a/schemas/PSRule-language.schema.json +++ b/schemas/PSRule-language.schema.json @@ -3671,8 +3671,8 @@ "trim": { "type": "object", "title": "Trim", - "description": "Trim a string value by removing leading and trailings whitespace.", - "markdownDescription": "Trim a string value by removing leading and trailings whitespace.", + "description": "Trim a string value by removing leading and trailing whitespace.", + "markdownDescription": "Trim a string value by removing leading and trailing whitespace.", "$ref": "#/definitions/fn/definitions/function" } }, @@ -3746,13 +3746,13 @@ "oneOf": [ { "type": "string", - "description": "The split function converts a string into an array by spliting based on a delimiter.", - "markdownDescription": "The `split` function converts a string into an array by spliting based on a delimiter." + "description": "The split function converts a string into an array by splitting based on a delimiter.", + "markdownDescription": "The `split` function converts a string into an array by splitting based on a delimiter." }, { "type": "object", - "description": "The split function converts a string into an array by spliting based on a delimiter.", - "markdownDescription": "The `split` function converts a string into an array by spliting based on a delimiter.", + "description": "The split function converts a string into an array by splitting based on a delimiter.", + "markdownDescription": "The `split` function converts a string into an array by splitting based on a delimiter.", "$ref": "#/definitions/fn/definitions/function" } ],