Skip to content

Commit 49b14ed

Browse files
Merge remote-tracking branch 'ustr/preview' into test-controller
# Conflicts: # src/ResourceManager/Profile/Commands.Profile/packages.config
2 parents ff34fb0 + 552215d commit 49b14ed

File tree

891 files changed

+560186
-77140
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

891 files changed

+560186
-77140
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,4 +242,3 @@ launchSettings.json
242242
/SolutionMappings.json
243243
/TestMappings.json
244244
/tools/Modules/tmp
245-
/tools/Az/Az.psm1

ChangeLog.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,30 @@
1-
## 6.10.0 - October 2018
1+
## 6.11.0 - October 2018
2+
#### AzureRM.Profile
3+
* Fix issue with Get-AzureRmSubscription in CloudShell
4+
* Update common code to use latest version of ClientRuntime
5+
6+
#### AzureRM.Backup
7+
* Deprecated Azure Backup cmdlets.
8+
9+
#### AzureRM.Compute
10+
* Added new sizes to the whitelist of VM sizes for which accelerated networking will be turned on when using the simple param set for 'New-AzureRmVm'
11+
* Added ResourceName argument completer to all cmdlets.
12+
13+
#### AzureRM.DataLakeStore
14+
* Adding support for Virtual Network Rules
15+
- Get-AzureRmDataLakeStoreVirtualNetworkRule: Gets or Lists Azure Data Lake Store virtual network rule.
16+
- Add-AzureRmDataLakeStoreVirtualNetworkRule: Adds a virtual network rule to the specified Data Lake Store account.
17+
- Set-AzureRmDataLakeStoreVirtualNetworkRule: Modifies the specified virtual network rule in the specified Data Lake Store account.
18+
- Remove-AzureRmDataLakeStoreVirtualNetworkRule: Deletes an Azure Data Lake Store virtual network rule.
19+
20+
#### AzureRM.Network
21+
* Update cmdlet Test-AzureRmNetworkWatcherConnectivity, pass the protocol value to backend.
22+
* Added ResourceName argument completer to all cmdlets.
23+
24+
#### AzureRM.Resources
25+
* Fix isssue where Get-AzureRMRoleDefinition throws an unintelligible exception (when the default profile has no subscription in it and no scope is specified) by adding a meaningful exception in the scenario. Also set the default param set to 'RoleDefinitionNameParameterSet'.
26+
27+
## 6.10.0 - October 2018
228
#### Azure.Storage
329
* Fix Copy Blob/File won't copy metadata when destination has metadata issue
430
- Start-AzureStorageBlobCopy

build.proj

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -411,10 +411,21 @@
411411
Condition="'$(SkipHelp)' == 'false'"
412412
ContinueOnError="false"/>
413413

414-
<!-- Cleanup extraneous files. -->
415-
<Exec Command="$(PowerShellCoreCommandPrefix) &quot;. $(LibraryToolsFolder)\CleanupBuild.ps1 -BuildConfig $(Configuration) &quot;" />
414+
<!-- Copying modules to be signed -->
415+
<Copy SourceFiles="$(LibraryToolsFolder)\Az\Az.psd1"
416+
DestinationFolder="$(PackageDirectory)\$(Configuration)"
417+
ContinueOnError="false" />
418+
<Copy SourceFiles="$(LibraryToolsFolder)\Az\Az.psm1"
419+
DestinationFolder="$(PackageDirectory)\$(Configuration)"
420+
ContinueOnError="false" />
416421

417422
<CallTarget Targets="CodeSignBinaries" Condition=" '$(CodeSign)' == 'true' " />
423+
424+
<Copy SourceFiles="$(PackageDirectory)\$(Configuration)\Az.psd1" DestinationFolder="$(LibraryToolsFolder)\Az" />
425+
<Copy SourceFiles="$(PackageDirectory)\$(Configuration)\Az.psm1" DestinationFolder="$(LibraryToolsFolder)\Az" />
426+
427+
<!-- Cleanup extraneous files. -->
428+
<Exec Command="$(PowerShellCoreCommandPrefix) &quot;. $(LibraryToolsFolder)\CleanupBuild.ps1 -BuildConfig $(Configuration) &quot;" />
418429
</Target>
419430

420431

@@ -438,9 +449,6 @@
438449
<Output TaskParameter="Path" PropertyName="WindowsSdkPath"/>
439450
</GetFrameworkSdkPath>
440451

441-
<Copy SourceFiles="$(LibraryRoot)tools\Az\Az.psd1"
442-
DestinationFolder="$(PackageDirectory)\$(Configuration)" Condition= " '$(Scope)' == 'Netcore' "/>
443-
444452
<!-- Azure -->
445453
<ItemGroup Condition="'$(Scope)' == 'All' or '$(Scope)' == 'Latest' or '$(Scope)' == 'Netcore'">
446454
<DelaySignedAssembliesToSign Include="$(PackageDirectory)\$(Configuration)\**\Microsoft*Azure*Commands*.dll" Exclude="$(PackageDirectory)\$(Configuration)\**\Microsoft*Azure*Commands*Common*.dll" />
@@ -490,6 +498,8 @@
490498
Condition="'$(Scope)' != 'Netcore'"/>
491499

492500
<!-- Copying shortcut to be signed -->
501+
<Copy SourceFiles="$(LibraryRoot)tools\Az\Az.psm1"
502+
DestinationFolder="$(PackageDirectory)\$(Configuration)" Condition="'$(Scope)' == 'All' or '$(Scope)' == 'Netcore'" />
493503
<Copy SourceFiles="$(LibraryRoot)tools\AzureRM\AzureRM.psm1"
494504
DestinationFolder="$(PackageDirectory)\$(Configuration)" Condition="'$(Scope)' == 'All' or '$(Scope)' == 'Latest'" />
495505
<Copy SourceFiles="$(LibrarySourceFolder)\StackAdmin\AzureRM\AzureRM.psm1"
@@ -532,10 +542,6 @@
532542
<Exec Command="$(PowerShellCommandPrefix) &quot;. $(LibraryToolsFolder)\CheckSignature.ps1 -CustomPath $(StackPackageFolder)\$(Configuration) &quot;"
533543
Condition="'$(Scope)' == 'All' or '$(Scope)' == 'Stack'"
534544
ContinueOnError="ErrorAndContinue" />
535-
536-
<!-- Copying signed shortcut back -->
537-
<Copy SourceFiles="$(PackageDirectory)\$(Configuration)\Az.psd1"
538-
DestinationFolder="$(LibraryRoot)tools\Az" Condition= " '$(Scope)' == 'Latest' "/>
539545
</Target>
540546

541547

documentation/announcing-az-module.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,27 @@ Az is a new module, and reorganizing and simplifying cmdlet names involves break
2929
## AzureRM Module Support
3030
AzureRM will continue to be supported, and important bugs will be fixed, but new development and new Azure capabilities will be shipped only in Az starting December 2018.
3131

32+
## Authentication Changes
33+
- ADAL has removed support for the "not recommended" user credential auth flow.
34+
- Connect-AzAccount will no longer accept PSCredential from Get-Credential
35+
- Here are a couple issues that describe why ADAL has removed this support
36+
- [Azure ActiveDirectory UserPasswordCredential doesn't support .NET core](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/issues/482#issuecomment-262256236)
37+
- [Connect-AzureRmAccount with user credential login does not work in Az](https://github.com/Azure/azure-powershell/issues/7430#issuecomment-426480499)
38+
39+
- Service Principal improvements
40+
- Self-renewing Service Principal Authentication
41+
- Service Principal Certificate Authentication (in the future)
42+
- Device Auth Flow
43+
- Future Improvements
44+
- [Interactive user credential login in az](https://github.com/Azure/azure-powershell/issues/7358)
45+
46+
3247
## Migrating From AzureRM
3348

3449
To make it easier for existing scripts to migrate from AzureRM to Az, we have provided cmdlets to create aliases that map the cmdlet names in AzureRM into the appropriate cmdlets in Az. When the aliases are enabled, any script that uses AzureRM cmdlet names should run against Az without modification.
3550

51+
Note: Connect-AzAccount aka Connect-AzureRmAccount no longer supports $pscredential. See [Authentication Changes](#authentication-changes) for more
52+
3653
```powershell
3754
PS C:\> Enable-AzureRmAlias
3855
```

documentation/breaking-changes/breaking-changes-attribute-help.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ All of the attributes have the following common traits:
3535

3636
The properties "deprecatedByVersion" and "changeInEfectByDate" are infotmation only (for the end user) as of now.
3737

38+
#### Supress the breaking change messages at runtime
3839
- If the user desires to not see the warning messages generated by the attirbutes at runtime, they can set the env variable "SuppressAzurePowerShellBreakingChangeWarnings" to "true".
3940

4041
NOTE :
@@ -485,4 +486,4 @@ Get-SomeObjectA -Param1=...
485486
...
486487
Breaking changes in the cmdlet : Get-SomeObjectA
487488
- The parameter 'Param1' is becoming mandatory
488-
```
489+
```

src/ResourceManager/Aks/Commands.Aks.Test/Commands.Aks.Test.Netcore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</PropertyGroup>
2525

2626
<ItemGroup>
27-
<PackageReference Include="YamlDotNet" Version="4.2.4" />
27+
<PackageReference Include="YamlDotNet.Signed" Version="5.2.1" />
2828
</ItemGroup>
2929

3030
<ItemGroup>

src/ResourceManager/Aks/Commands.Aks.Test/Commands.Aks.Test.csproj

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,6 @@
3838
<ErrorReport>prompt</ErrorReport>
3939
<RunCodeAnalysis>false</RunCodeAnalysis>
4040
</PropertyGroup>
41-
<ItemGroup>
42-
<Reference Include="YamlDotNet, Version=4.2.4.0, Culture=neutral, PublicKeyToken=ec19458f3c15af5e, processorArchitecture=MSIL">
43-
<HintPath>..\packages\YamlDotNet.Signed.4.2.4\lib\net45\YamlDotNet.dll</HintPath>
44-
<Private>True</Private>
45-
</Reference>
46-
</ItemGroup>
4741
<ItemGroup>
4842
<Compile Include="MergeKubeConfigTests.cs" />
4943
<Compile Include="Properties\AssemblyInfo.cs" />
@@ -83,5 +77,10 @@
8377
<ItemGroup>
8478
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
8579
</ItemGroup>
80+
<ItemGroup>
81+
<Reference Include="YamlDotNet, Version=5.0.0.0, Culture=neutral, PublicKeyToken=ec19458f3c15af5e, processorArchitecture=MSIL">
82+
<HintPath>..\..\..\packages\YamlDotNet.Signed.5.2.1\lib\net45\YamlDotNet.dll</HintPath>
83+
</Reference>
84+
</ItemGroup>
8685
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
8786
</Project>

src/ResourceManager/Aks/Commands.Aks.Test/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
<package id="xunit.extensibility.core" version="2.1.0" targetFramework="net452" />
2020
<package id="xunit.extensibility.execution" version="2.1.0" targetFramework="net452" />
2121
<package id="xunit.runner.visualstudio" version="2.1.0" targetFramework="net452" />
22-
<package id="YamlDotNet.Signed" version="4.2.4" targetFramework="net452" />
22+
<package id="YamlDotNet.Signed" version="5.2.1" targetFramework="net452" />
2323
</packages>

src/ResourceManager/Aks/Commands.Aks/Az.Aks.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.3.0'
15+
ModuleVersion = '0.4.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'Az.Profile'; ModuleVersion = '0.3.0'; })
54+
RequiredModules = @(@{ModuleName = 'Az.Profile'; ModuleVersion = '0.4.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\YamlDotNet.dll', '.\AutoMapper.dll'

src/ResourceManager/Aks/Commands.Aks/AzureRM.Aks.psd1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.0.5'
15+
ModuleVersion = '0.0.6'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.6.0'; })
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.7.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\YamlDotNet.dll', '.\AutoMapper.dll'
@@ -109,7 +109,7 @@ PrivateData = @{
109109
# IconUri = ''
110110

111111
# ReleaseNotes of this module
112-
ReleaseNotes = '* Updated to the latest version of the Azure ClientRuntime.'
112+
ReleaseNotes = '* Update version of YamlDotNet.Signed used'
113113

114114
# Prerelease string of this module
115115
Prerelease = 'preview'

src/ResourceManager/Aks/Commands.Aks/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
-->
2020
## Current Release
2121

22+
## Version 0.0.6
23+
* Update version of YamlDotNet.Signed used
24+
2225
## Version 0.0.5
2326
* Updated to the latest version of the Azure ClientRuntime.
2427

src/ResourceManager/Aks/Commands.Aks/Commands.Aks.Netcore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</PropertyGroup>
2828

2929
<ItemGroup>
30-
<PackageReference Include="YamlDotNet.Signed" Version="4.2.2" />
30+
<PackageReference Include="YamlDotNet.Signed" Version="5.2.1" />
3131
<PackageReference Include="AutoMapper" Version="6.2.2" />
3232
</ItemGroup>
3333

src/ResourceManager/Aks/Commands.Aks/Commands.Aks.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,8 @@
104104
<HintPath>..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll</HintPath>
105105
<Private>True</Private>
106106
</Reference>
107-
<Reference Include="YamlDotNet, Version=4.2.4.0, Culture=neutral, PublicKeyToken=ec19458f3c15af5e, processorArchitecture=MSIL">
108-
<HintPath>..\..\..\packages\YamlDotNet.Signed.4.2.4\lib\net45\YamlDotNet.dll</HintPath>
109-
<Private>True</Private>
107+
<Reference Include="YamlDotNet, Version=5.0.0.0, Culture=neutral, PublicKeyToken=ec19458f3c15af5e, processorArchitecture=MSIL">
108+
<HintPath>..\..\..\packages\YamlDotNet.Signed.5.2.1\lib\net45\YamlDotNet.dll</HintPath>
110109
</Reference>
111110
</ItemGroup>
112111
<ItemGroup>

src/ResourceManager/Aks/Commands.Aks/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
[assembly: ComVisible(false)]
2424
[assembly: CLSCompliant(false)]
2525
[assembly: Guid("a97e0c3e-e389-46a6-b73d-2b9bd6909bdb")]
26-
[assembly: AssemblyVersion("0.0.5")]
27-
[assembly: AssemblyFileVersion("0.0.5")]
26+
[assembly: AssemblyVersion("0.0.6")]
27+
[assembly: AssemblyFileVersion("0.0.6")]

src/ResourceManager/Aks/Commands.Aks/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
<package id="AutoMapper" version="6.2.1" targetFramework="net452" />
44
<package id="Newtonsoft.Json" version="6.0.8" targetFramework="net452" />
55
<package id="System.Management.Automation_PowerShell_3.0" version="6.3.9600.17400" targetFramework="net452" />
6-
<package id="YamlDotNet.Signed" version="4.2.4" targetFramework="net452" />
6+
<package id="YamlDotNet.Signed" version="5.2.1" targetFramework="net452" />
77
</packages>

src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Azure.AnalysisServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.6.0'; })
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.7.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
# RequiredAssemblies = @()

src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" />
99
<package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.28.3" targetFramework="net45" />
1010
<package id="Microsoft.Net.Http" version="2.2.28" targetFramework="net45" />
11-
<package id="Microsoft.Rest.ClientRuntime" version="2.3.14" targetFramework="net452" />
12-
<package id="Microsoft.Rest.ClientRuntime.Azure" version="3.3.16" targetFramework="net452" />
11+
<package id="Microsoft.Rest.ClientRuntime" version="2.3.16" targetFramework="net452" />
12+
<package id="Microsoft.Rest.ClientRuntime.Azure" version="3.3.17" targetFramework="net452" />
1313
<package id="Microsoft.WindowsAzure.Management" version="4.1.1" targetFramework="net45" />
1414
<package id="Newtonsoft.Json" version="6.0.8" targetFramework="net45" />
1515
</packages>

src/ResourceManager/AnalysisServices/Commands.AnalysisServices/Az.AnalysisServices.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.3.0'
15+
ModuleVersion = '0.4.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'Az.Profile'; ModuleVersion = '0.3.0'; })
54+
RequiredModules = @(@{ModuleName = 'Az.Profile'; ModuleVersion = '0.4.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\Microsoft.Azure.Management.Analysis.dll'

src/ResourceManager/AnalysisServices/Commands.AnalysisServices/AzureRM.AnalysisServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.6.0'; })
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.7.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\Microsoft.Azure.Management.Analysis.dll'

src/ResourceManager/ApiManagement/Commands.ApiManagement/Az.ApiManagement.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.3.0'
15+
ModuleVersion = '0.4.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'Az.Profile'; ModuleVersion = '0.3.0'; })
54+
RequiredModules = @(@{ModuleName = 'Az.Profile'; ModuleVersion = '0.4.0'; })
5555

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

src/ResourceManager/ApiManagement/Commands.ApiManagement/AzureRM.ApiManagement.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.6.0'; })
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.7.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\AutoMapper.dll',

src/ResourceManager/ApplicationInsights/Commands.ApplicationInsights/Az.ApplicationInsights.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.3.0'
15+
ModuleVersion = '0.4.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'Az.Profile'; ModuleVersion = '0.3.0'; })
54+
RequiredModules = @(@{ModuleName = 'Az.Profile'; ModuleVersion = '0.4.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\Microsoft.Azure.Management.ApplicationInsights.dll'

src/ResourceManager/ApplicationInsights/Commands.ApplicationInsights/AzureRM.ApplicationInsights.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.6.0'; })
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.7.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\Microsoft.Azure.Management.ApplicationInsights.dll'

src/ResourceManager/Automation/Commands.Automation.Test/Commands.Automation.Test.Netcore.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
<PropertyGroup>
66
<TargetFrameworks>netcoreapp2.1;netcoreapp2.0;net472</TargetFrameworks>
7-
<AssemblyName>Microsoft.Azure.Commands.ResourceManager.Automation.Test</AssemblyName>
8-
<RootNamespace>Microsoft.Azure.Commands.ResourceManager.Automation.Test</RootNamespace>
7+
<AssemblyName>Microsoft.Azure.Commands.Automation.Test</AssemblyName>
8+
<RootNamespace>Microsoft.Azure.Commands.Automation.Test</RootNamespace>
99
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
1010
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1111
<WarningsAsErrors />
@@ -35,7 +35,7 @@
3535

3636
<ItemGroup>
3737
<Reference Include="Microsoft.Azure.Commands.Automation">
38-
<HintPath>..\..\..\Package\$(Configuration)\ResourceManager\AzureResourceManager\Az.Automation\Microsoft.Azure.Commands.ResourceManager.Automation.dll</HintPath>
38+
<HintPath>..\..\..\Package\$(Configuration)\ResourceManager\AzureResourceManager\Az.Automation\Microsoft.Azure.Commands.Automation.dll</HintPath>
3939
</Reference>
4040
</ItemGroup>
4141

0 commit comments

Comments
 (0)