We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25f1d5b commit 4734531Copy full SHA for 4734531
modules/Sentry/private/Get-SentryAssembliesDirectory.ps1
@@ -9,14 +9,10 @@ function GetTFM
9
# PowerShell 6.2 - Built on .NET Core 2.1
10
# PowerShell 6.1 - Built on .NET Core 2.1
11
# PowerShell 6.0 - Built on .NET Core 2.0
12
- if ($PSVersionTable.PSVersion -ge '7.4')
+ if ($PSVersionTable.PSVersion -ge '7.2')
13
{
14
return 'net8.0'
15
}
16
- elseif ($PSVersionTable.PSVersion -ge '7.2')
17
- {
18
- return 'net6.0'
19
- }
20
else
21
22
return 'net462'
0 commit comments