Skip to content

Commit 78635c0

Browse files
authored
Compliance: Update the .NET Core version and PowerShell SDK package (#1320)
1 parent 03a0d3f commit 78635c0

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

MockPSConsole/MockPSConsole.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
</PropertyGroup>
1111

1212
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp2.1'">
13-
<RuntimeFrameworkVersion>2.1.12</RuntimeFrameworkVersion>
13+
<RuntimeFrameworkVersion>2.1.13</RuntimeFrameworkVersion>
1414
</PropertyGroup>
1515

1616
<ItemGroup>
1717
<PackageReference Include="System.Xml.XDocument" version="4.3.0" />
1818
<PackageReference Include="System.Data.DataSetExtensions" version="4.5.0" />
1919
<PackageReference Include="Microsoft.CSharp" version="4.5.0" />
2020
<PackageReference Include="PowerShellStandard.Library" version="5.1.0-*" Condition="'$(TargetFramework)' == 'net461'" />
21-
<PackageReference Include="Microsoft.PowerShell.SDK" version="6.2.2" Condition="'$(TargetFramework)' == 'netcoreapp2.1'" />
21+
<PackageReference Include="Microsoft.PowerShell.SDK" version="6.2.4" Condition="'$(TargetFramework)' == 'netcoreapp2.1'" />
2222
</ItemGroup>
2323

2424
<ItemGroup>

PSReadLine/PSReadLine.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</PropertyGroup>
1212

1313
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp2.1'">
14-
<RuntimeFrameworkVersion>2.1.12</RuntimeFrameworkVersion>
14+
<RuntimeFrameworkVersion>2.1.13</RuntimeFrameworkVersion>
1515
</PropertyGroup>
1616

1717
<ItemGroup>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ If you want to change the command line in some unimplmented way in your custom k
198198

199199
### Prerequisites
200200

201-
To build `PSReadLine` on Windows, Linux, or macOS, you must have [.NET Core SDK 2.1.400 or newer](https://www.microsoft.com/net/download) installed.
201+
To build `PSReadLine` on Windows, Linux, or macOS, you must have [.NET Core SDK 2.1.802 or newer](https://www.microsoft.com/net/download) installed.
202202
The build script also depends on [`InvokeBuild`](https://www.powershellgallery.com/packages/InvokeBuild) which can be installed using:
203203

204204
```powershell

test/PSReadLine.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
</PropertyGroup>
1414

1515
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp2.1'">
16-
<RuntimeFrameworkVersion>2.1.12</RuntimeFrameworkVersion>
16+
<RuntimeFrameworkVersion>2.1.13</RuntimeFrameworkVersion>
1717
</PropertyGroup>
1818

1919
<ItemGroup>
2020
<PackageReference Include="System.Xml.XDocument" version="4.3.0" />
2121
<PackageReference Include="System.Data.DataSetExtensions" version="4.5.0" />
2222
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" version="4.3.0" />
2323
<PackageReference Include="Microsoft.CSharp" version="4.5.0" />
24-
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
25-
<PackageReference Include="Microsoft.PowerShell.SDK" Version="6.2.2" Condition="'$(TargetFramework)' == 'netcoreapp2.1'" />
24+
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
25+
<PackageReference Include="Microsoft.PowerShell.SDK" Version="6.2.4" Condition="'$(TargetFramework)' == 'netcoreapp2.1'" />
2626
<PackageReference Include="PowerShellStandard.Library" version="5.1.0-*" Condition="'$(TargetFramework)' == 'net461'" />
2727
</ItemGroup>
2828

tools/helper.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
$MinimalSDKVersion = '2.1.801'
2+
$MinimalSDKVersion = '2.1.802'
33
$IsWindowsEnv = [System.Environment]::OSVersion.Platform -eq "Win32NT"
44
$RepoRoot = (Resolve-Path "$PSScriptRoot/..").Path
55
$LocalDotnetDirPath = if ($IsWindowsEnv) { "$env:LocalAppData\Microsoft\dotnet" } else { "$env:HOME/.dotnet" }
@@ -68,7 +68,7 @@ function Install-Dotnet
6868
[CmdletBinding()]
6969
param(
7070
[string]$Channel = 'release',
71-
[string]$Version = '2.1.801'
71+
[string]$Version = '2.1.802'
7272
)
7373

7474
try {

0 commit comments

Comments
 (0)