Skip to content

Commit e10fd70

Browse files
authored
Merge pull request Azure#6460 from markcowl/netcore-deps
Update dependencies in packages for netcore
2 parents fc10098 + 50ffd48 commit e10fd70

File tree

8 files changed

+19
-4
lines changed

8 files changed

+19
-4
lines changed

src/ResourceManager/ApiManagement/AzureRM.ApiManagement.Netcore.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ PowerShellVersion = '5.1'
5454
RequiredModules = @(@{ModuleName = 'AzureRM.Profile.Netcore'; ModuleVersion = '0.12.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
57-
RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.Management.ApiManagement.dll'
57+
RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.Management.ApiManagement.dll', '.\Microsoft.WindowsAzure.Storage.dll'
5858

5959
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
6060
# ScriptsToProcess = @()

src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands.ApiManagement.Netcore.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
<ItemGroup>
3535
<PackageReference Include="AutoMapper" Version="6.2.2" />
3636
<PackageReference Include="Microsoft.Azure.Management.ApiManagement" Version="4.0.2-preview" />
37+
<PackageReference Include="WindowsAzure.Storage" Version="9.0.0" />
3738
</ItemGroup>
3839

3940
<ItemGroup>

src/ResourceManager/AzureBatch/AzureRM.Batch.Netcore.psd1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile.Netcore'; ModuleVersion = '0
5757
RequiredAssemblies = '.\Microsoft.Azure.Batch.dll',
5858
'.\Microsoft.Azure.Management.Batch.dll',
5959
'.\Microsoft.Extensions.Primitives.dll',
60-
'.\System.Runtime.CompilerServices.Unsafe.dll'
60+
'.\System.Runtime.CompilerServices.Unsafe.dll',
61+
'.\Microsoft.WindowsAzure.Storage.dll'
6162

6263
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
6364
# ScriptsToProcess = @()

src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.Netcore.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
<PackageReference Include="Azure.Batch" Version="8.1.1" />
3636
<PackageReference Include="Microsoft.Azure.Management.Batch" Version="4.2.0" />
3737
<PackageReference Include="Microsoft.Extensions.Primitives" Version="1.1.0" />
38+
<PackageReference Include="WindowsAzure.Storage" Version="9.0.0" />
3839
</ItemGroup>
3940

4041
<ItemGroup>

src/ResourceManager/Compute/AzureRM.Compute.Netcore.psd1

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile.Netcore'; ModuleVersion = '0
5757
RequiredAssemblies = '.\AutoMapper.dll',
5858
'.\Microsoft.Azure.Commands.Common.Strategies.4.dll',
5959
'.\Microsoft.Azure.Management.Compute.dll',
60-
'.\Microsoft.Azure.Management.KeyVault.dll'
60+
'.\Microsoft.Azure.Management.KeyVault.dll',
61+
'.\Microsoft.Azure.Management.Network.dll',
62+
'.\Microsoft.Azure.Management.Storage.dll',
63+
'.\Microsoft.WindowsAzure.Storage.dll'
6164

6265
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
6366
# ScriptsToProcess = @()

src/ResourceManager/Compute/Commands.Compute/Commands.Compute.Netcore.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@
3434
<PackageReference Include="AutoMapper" Version="6.2.2" />
3535
<PackageReference Include="Microsoft.Azure.Management.Compute" Version="18.0.0" />
3636
<PackageReference Include="Microsoft.Azure.Management.KeyVault" Version="2.4.1-alpha" />
37+
<PackageReference Include="Microsoft.Azure.Management.Storage" Version="7.1.0-preview" />
38+
<PackageReference Include="Microsoft.Azure.Management.Network" Version="19.0.2-preview" />
3739
<PackageReference Include="System.ServiceModel.Primitives" Version="4.4.1" />
40+
<PackageReference Include="WindowsAzure.Storage" Version="9.0.0" />
3841
</ItemGroup>
3942

4043
<ItemGroup>

src/ResourceManager/Storage/AzureRM.Storage.Netcore.psd1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Storage.dll'
6767
FormatsToProcess = '.\Microsoft.Azure.Commands.Management.Storage.format.ps1xml'
6868

6969
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
70-
NestedModules = @('.\Microsoft.Azure.Commands.Management.Storage.dll')
70+
NestedModules = '.\Microsoft.Azure.Commands.Management.Storage.dll',
71+
'.\Microsoft.WindowsAzure.Storage.dll'
7172

7273
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
7374
FunctionsToExport = @()

src/ResourceManager/Storage/Commands.Management.Storage/Commands.Management.Storage.Netcore.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@
3535
</None>
3636
</ItemGroup>
3737

38+
<ItemGroup>
39+
<PackageReference Include="Microsoft.Azure.Management.Storage" Version="7.1.0-preview" />
40+
<PackageReference Include="WindowsAzure.Storage" Version="9.0.0" />
41+
</ItemGroup>
42+
3843
<ItemGroup>
3944
<ProjectReference Include="..\..\..\Common\Commands.Common.Authentication.Abstractions\Common.Authentication.Abstractions.Netcore.csproj" />
4045
<ProjectReference Include="..\..\..\Common\Commands.Common.Storage\Common.Storage.Netcore.csproj" />

0 commit comments

Comments
 (0)