Skip to content

Commit 9c32168

Browse files
authored
Fix minimum PowerShell version to be 7.0.11 instead of 7.1.7 (#1830)
1 parent 987c169 commit 9c32168

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Engine/PSScriptAnalyzer.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ $PSModuleRoot = $PSModule.ModuleBase
99

1010
# Import the appropriate nested binary module based on the current PowerShell version
1111
$binaryModuleRoot = $PSModuleRoot
12-
[Version] $minimumPowerShellCoreVersion = '7.1.7'
12+
[Version] $minimumPowerShellCoreVersion = '7.0.11'
1313
if ($PSVersionTable.PSVersion.Major -ge 6) {
1414
$binaryModuleRoot = Join-Path -Path $PSModuleRoot -ChildPath "PSv$($PSVersionTable.PSVersion.Major)"
1515
# Minimum PowerShell Core version given by PowerShell Core support itself and

0 commit comments

Comments
 (0)