Skip to content

Commit 998082f

Browse files
authored
Upgraded Microsoft.PowerShell.SDK to 7.0.13 (#21515)
1 parent dc227a9 commit 998082f

File tree

4 files changed

+14
-16
lines changed

4 files changed

+14
-16
lines changed

src/StorageSync/StorageSync.Test/StorageSync.Test.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<ItemGroup>
1414
<PackageReference Include="Microsoft.Azure.Management.StorageSync" Version="6.0.0" />
1515
<PackageReference Include="Microsoft.Azure.Management.Storage" Version="25.0.0" />
16-
<PackageReference Include="System.Management" Version="4.5.0" />
1716
</ItemGroup>
1817

1918
<ItemGroup>

tools/Common.Netcore.Dependencies.Test.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
3535
<!-- version of SDK should reference https://docs.microsoft.com/en-us/powershell/azure/what-is-azure-powershell -->
36-
<PackageReference Include="Microsoft.PowerShell.SDK" Version="6.2.4" IncludeAssets="All" />
36+
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.0.13" IncludeAssets="All" />
3737
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
3838
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
3939
</ItemGroup>

tools/TestFx/TestFx.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,9 @@
3232
</ItemGroup>
3333

3434
<ItemGroup>
35-
<!-- System.ServiceModel.Primitives is requried by Compute but version is not supported by PowerShellSDK 6.x -->
36-
<!-- It should be removed after PowerShellSDK is upgraded to 7.x -->
3735
<PackageReference Include="Moq" Version="4.7.145" />
38-
<PackageReference Include="System.ServiceModel.Primitives" Version="4.7.0" />
36+
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
37+
<PackageReference Include="System.DirectoryServices.Protocols" Version="5.0.1" />
3938
</ItemGroup>
4039

4140
</Project>

tools/TestFx/Utilities/KustoUtility.psm1

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ function InitializeKustoPackages {
2424
New-Item -Path . -Name $kustoPackagesDirectoryName -ItemType Directory -Force
2525

2626
$kustoPackages = @(
27-
@{ PackageName = "Azure.Core"; PackageVersion = "1.22.0"; DllName = "Azure.Core.dll" },
28-
@{ PackageName = "Azure.Data.Tables"; PackageVersion = "12.5.0"; DllName = "Azure.Data.Tables.dll" },
29-
@{ PackageName = "Azure.Storage.Blobs"; PackageVersion = "12.10.0"; DllName = "Azure.Storage.Blobs.dll" },
30-
@{ PackageName = "Azure.Storage.Common"; PackageVersion = "12.9.0"; DllName = "Azure.Storage.Common.dll" },
31-
@{ PackageName = "Azure.Storage.Queues"; PackageVersion = "12.8.0"; DllName = "Azure.Storage.Queues.dll" },
32-
@{ PackageName = "Microsoft.Azure.Kusto.Cloud.Platform"; PackageVersion = "11.1.0"; DllName = "Kusto.Cloud.Platform.dll" },
33-
@{ PackageName = "Microsoft.Azure.Kusto.Cloud.Platform.Aad"; PackageVersion = "11.1.0"; DllName = "Kusto.Cloud.Platform.Aad.dll" },
34-
@{ PackageName = "Microsoft.Azure.Kusto.Data"; PackageVersion = "11.1.0"; DllName = "Kusto.Data.dll" },
35-
@{ PackageName = "Microsoft.Azure.Kusto.Ingest"; PackageVersion = "11.1.0"; DllName = "Kusto.Ingest.dll" },
36-
@{ PackageName = "Microsoft.Identity.Client"; PackageVersion = "4.46.0"; DllName = "Microsoft.Identity.Client.dll" },
37-
@{ PackageName = "Microsoft.IdentityModel.Abstractions"; PackageVersion = "6.18.0"; DllName = "Microsoft.IdentityModel.Abstractions.dll" },
27+
@{ PackageName = "Azure.Core"; PackageVersion = "1.25.0"; DllName = "Azure.Core.dll" },
28+
@{ PackageName = "Azure.Data.Tables"; PackageVersion = "12.6.1"; DllName = "Azure.Data.Tables.dll" },
29+
@{ PackageName = "Azure.Storage.Blobs"; PackageVersion = "12.13.0"; DllName = "Azure.Storage.Blobs.dll" },
30+
@{ PackageName = "Azure.Storage.Common"; PackageVersion = "12.12.0"; DllName = "Azure.Storage.Common.dll" },
31+
@{ PackageName = "Azure.Storage.Queues"; PackageVersion = "12.11.0"; DllName = "Azure.Storage.Queues.dll" },
32+
@{ PackageName = "Microsoft.Azure.Kusto.Cloud.Platform"; PackageVersion = "11.2.2"; DllName = "Kusto.Cloud.Platform.dll" },
33+
@{ PackageName = "Microsoft.Azure.Kusto.Cloud.Platform.Aad"; PackageVersion = "11.2.2"; DllName = "Kusto.Cloud.Platform.Aad.dll" },
34+
@{ PackageName = "Microsoft.Azure.Kusto.Data"; PackageVersion = "11.2.2"; DllName = "Kusto.Data.dll" },
35+
@{ PackageName = "Microsoft.Azure.Kusto.Ingest"; PackageVersion = "11.2.2"; DllName = "Kusto.Ingest.dll" },
36+
@{ PackageName = "Microsoft.Identity.Client"; PackageVersion = "4.48.0"; DllName = "Microsoft.Identity.Client.dll" },
37+
@{ PackageName = "Microsoft.IdentityModel.Abstractions"; PackageVersion = "6.22.0"; DllName = "Microsoft.IdentityModel.Abstractions.dll" },
3838
@{ PackageName = "Microsoft.IO.RecyclableMemoryStream"; PackageVersion = "2.2.0"; DllName = "Microsoft.IO.RecyclableMemoryStream.dll" },
3939
@{ PackageName = "System.Memory.Data"; PackageVersion = "1.0.2"; DllName = "System.Memory.Data.dll" }
4040
)

0 commit comments

Comments
 (0)