Skip to content

Update dependencies in packages for netcore #6460

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 14, 2018
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
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ PowerShellVersion = '5.1'
RequiredModules = @(@{ModuleName = 'AzureRM.Profile.Netcore'; ModuleVersion = '0.12.0'; })

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

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<ItemGroup>
<PackageReference Include="AutoMapper" Version="6.2.2" />
<PackageReference Include="Microsoft.Azure.Management.ApiManagement" Version="4.0.2-preview" />
<PackageReference Include="WindowsAzure.Storage" Version="9.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion src/ResourceManager/AzureBatch/AzureRM.Batch.Netcore.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile.Netcore'; ModuleVersion = '0
RequiredAssemblies = '.\Microsoft.Azure.Batch.dll',
'.\Microsoft.Azure.Management.Batch.dll',
'.\Microsoft.Extensions.Primitives.dll',
'.\System.Runtime.CompilerServices.Unsafe.dll'
'.\System.Runtime.CompilerServices.Unsafe.dll',
'.\Microsoft.WindowsAzure.Storage.dll'

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
<PackageReference Include="Azure.Batch" Version="8.1.1" />
<PackageReference Include="Microsoft.Azure.Management.Batch" Version="4.2.0" />
<PackageReference Include="Microsoft.Extensions.Primitives" Version="1.1.0" />
<PackageReference Include="WindowsAzure.Storage" Version="9.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
5 changes: 4 additions & 1 deletion src/ResourceManager/Compute/AzureRM.Compute.Netcore.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile.Netcore'; ModuleVersion = '0
RequiredAssemblies = '.\AutoMapper.dll',
'.\Microsoft.Azure.Commands.Common.Strategies.4.dll',
'.\Microsoft.Azure.Management.Compute.dll',
'.\Microsoft.Azure.Management.KeyVault.dll'
'.\Microsoft.Azure.Management.KeyVault.dll',
'.\Microsoft.Azure.Management.Network.dll',
'.\Microsoft.Azure.Management.Storage.dll',
'.\Microsoft.WindowsAzure.Storage.dll'

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@
<PackageReference Include="AutoMapper" Version="6.2.2" />
<PackageReference Include="Microsoft.Azure.Management.Compute" Version="18.0.0" />
<PackageReference Include="Microsoft.Azure.Management.KeyVault" Version="2.4.1-alpha" />
<PackageReference Include="Microsoft.Azure.Management.Storage" Version="7.1.0-preview" />
<PackageReference Include="Microsoft.Azure.Management.Network" Version="19.0.2-preview" />
<PackageReference Include="System.ServiceModel.Primitives" Version="4.4.1" />
<PackageReference Include="WindowsAzure.Storage" Version="9.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion src/ResourceManager/Storage/AzureRM.Storage.Netcore.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Storage.dll'
FormatsToProcess = '.\Microsoft.Azure.Commands.Management.Storage.format.ps1xml'

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

# 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.
FunctionsToExport = @()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Azure.Management.Storage" Version="7.1.0-preview" />
<PackageReference Include="WindowsAzure.Storage" Version="9.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\Common\Commands.Common.Authentication.Abstractions\Common.Authentication.Abstractions.Netcore.csproj" />
<ProjectReference Include="..\..\..\Common\Commands.Common.Storage\Common.Storage.Netcore.csproj" />
Expand Down