Skip to content

Commit d27c156

Browse files
committed
Update tests' PowerShell SDK package dependencies
Dependabot gets a bit confused here because we conditionally depend on both the 7.0 and 7.2 SDK packages.
1 parent f2e306f commit d27c156

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/PowerShellEditorServices.Test/PowerShellEditorServices.Test.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@
1717
<ProjectReference Include="..\PowerShellEditorServices.Test.Shared\PowerShellEditorServices.Test.Shared.csproj" />
1818
</ItemGroup>
1919

20+
<!-- This is for testing PowerShell 7.2 LTS -->
2021
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
21-
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.0-preview.3" />
22+
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.0" />
2223
</ItemGroup>
2324

25+
<!-- This is for testing PowerShell 7.0 LTS -->
2426
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1' ">
25-
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.0.6" />
27+
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.0.8" />
2628
</ItemGroup>
2729

2830
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">

0 commit comments

Comments
 (0)