Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/StorageSync/StorageSync.Test/StorageSync.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Management.StorageSync" Version="6.0.0" />
<PackageReference Include="Microsoft.Azure.Management.Storage" Version="25.0.0" />
<PackageReference Include="System.Management" Version="4.5.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion tools/Common.Netcore.Dependencies.Test.targets
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
<!-- version of SDK should reference https://docs.microsoft.com/en-us/powershell/azure/what-is-azure-powershell -->
<PackageReference Include="Microsoft.PowerShell.SDK" Version="6.2.4" IncludeAssets="All" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.0.13" IncludeAssets="All" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
</ItemGroup>
Expand Down
5 changes: 2 additions & 3 deletions tools/TestFx/TestFx.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,9 @@
</ItemGroup>

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

</Project>
22 changes: 11 additions & 11 deletions tools/TestFx/Utilities/KustoUtility.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ function InitializeKustoPackages {
New-Item -Path . -Name $kustoPackagesDirectoryName -ItemType Directory -Force

$kustoPackages = @(
@{ PackageName = "Azure.Core"; PackageVersion = "1.22.0"; DllName = "Azure.Core.dll" },
@{ PackageName = "Azure.Data.Tables"; PackageVersion = "12.5.0"; DllName = "Azure.Data.Tables.dll" },
@{ PackageName = "Azure.Storage.Blobs"; PackageVersion = "12.10.0"; DllName = "Azure.Storage.Blobs.dll" },
@{ PackageName = "Azure.Storage.Common"; PackageVersion = "12.9.0"; DllName = "Azure.Storage.Common.dll" },
@{ PackageName = "Azure.Storage.Queues"; PackageVersion = "12.8.0"; DllName = "Azure.Storage.Queues.dll" },
@{ PackageName = "Microsoft.Azure.Kusto.Cloud.Platform"; PackageVersion = "11.1.0"; DllName = "Kusto.Cloud.Platform.dll" },
@{ PackageName = "Microsoft.Azure.Kusto.Cloud.Platform.Aad"; PackageVersion = "11.1.0"; DllName = "Kusto.Cloud.Platform.Aad.dll" },
@{ PackageName = "Microsoft.Azure.Kusto.Data"; PackageVersion = "11.1.0"; DllName = "Kusto.Data.dll" },
@{ PackageName = "Microsoft.Azure.Kusto.Ingest"; PackageVersion = "11.1.0"; DllName = "Kusto.Ingest.dll" },
@{ PackageName = "Microsoft.Identity.Client"; PackageVersion = "4.46.0"; DllName = "Microsoft.Identity.Client.dll" },
@{ PackageName = "Microsoft.IdentityModel.Abstractions"; PackageVersion = "6.18.0"; DllName = "Microsoft.IdentityModel.Abstractions.dll" },
@{ PackageName = "Azure.Core"; PackageVersion = "1.25.0"; DllName = "Azure.Core.dll" },
@{ PackageName = "Azure.Data.Tables"; PackageVersion = "12.6.1"; DllName = "Azure.Data.Tables.dll" },
@{ PackageName = "Azure.Storage.Blobs"; PackageVersion = "12.13.0"; DllName = "Azure.Storage.Blobs.dll" },
@{ PackageName = "Azure.Storage.Common"; PackageVersion = "12.12.0"; DllName = "Azure.Storage.Common.dll" },
@{ PackageName = "Azure.Storage.Queues"; PackageVersion = "12.11.0"; DllName = "Azure.Storage.Queues.dll" },
@{ PackageName = "Microsoft.Azure.Kusto.Cloud.Platform"; PackageVersion = "11.2.2"; DllName = "Kusto.Cloud.Platform.dll" },
@{ PackageName = "Microsoft.Azure.Kusto.Cloud.Platform.Aad"; PackageVersion = "11.2.2"; DllName = "Kusto.Cloud.Platform.Aad.dll" },
@{ PackageName = "Microsoft.Azure.Kusto.Data"; PackageVersion = "11.2.2"; DllName = "Kusto.Data.dll" },
@{ PackageName = "Microsoft.Azure.Kusto.Ingest"; PackageVersion = "11.2.2"; DllName = "Kusto.Ingest.dll" },
@{ PackageName = "Microsoft.Identity.Client"; PackageVersion = "4.48.0"; DllName = "Microsoft.Identity.Client.dll" },
@{ PackageName = "Microsoft.IdentityModel.Abstractions"; PackageVersion = "6.22.0"; DllName = "Microsoft.IdentityModel.Abstractions.dll" },
@{ PackageName = "Microsoft.IO.RecyclableMemoryStream"; PackageVersion = "2.2.0"; DllName = "Microsoft.IO.RecyclableMemoryStream.dll" },
@{ PackageName = "System.Memory.Data"; PackageVersion = "1.0.2"; DllName = "System.Memory.Data.dll" }
)
Expand Down