From ad3679acb6d1d4625925bf41e791fd2b89149635 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Wed, 18 Mar 2026 22:39:51 +0000
Subject: [PATCH] Update .NET SDK, PowerShell SDK dependencies
Co-authored-by: andyleejordan <2226434+andyleejordan@users.noreply.github.com>
---
Directory.Packages.props | 4 ++--
Engine/PSScriptAnalyzer.psm1 | 3 ++-
global.json | 2 +-
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/Directory.Packages.props b/Directory.Packages.props
index f5afcab86..bd8565ee8 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -9,8 +9,8 @@
-
-
+
+
diff --git a/Engine/PSScriptAnalyzer.psm1 b/Engine/PSScriptAnalyzer.psm1
index acd9daf76..7e2ca8f31 100644
--- a/Engine/PSScriptAnalyzer.psm1
+++ b/Engine/PSScriptAnalyzer.psm1
@@ -9,7 +9,8 @@ $PSModuleRoot = $PSModule.ModuleBase
# Import the appropriate nested binary module based on the current PowerShell version
$binaryModuleRoot = $PSModuleRoot
-[Version] $minimumPowerShellCoreVersion = '7.4.13'
+# This should be the equivalent of 7.4.x i.e. latest major/minor supported but lowest patch.
+[Version] $minimumPowerShellCoreVersion = '7.4.6'
if ($PSVersionTable.PSVersion.Major -ge 6) {
$binaryModuleRoot = Join-Path -Path $PSModuleRoot -ChildPath "PSv$($PSVersionTable.PSVersion.Major)"
# Minimum PowerShell Core version given by PowerShell Core support itself and
diff --git a/global.json b/global.json
index 875b92095..de3e16bd7 100644
--- a/global.json
+++ b/global.json
@@ -1,6 +1,6 @@
{
"sdk": {
- "version": "8.0.416",
+ "version": "8.0.419",
"rollForward": "latestFeature"
}
}