Skip to content

Commit fa91d89

Browse files
author
Hovsep
authored
Merge pull request Azure#2599 from Azure/master
Release 1.6.0
2 parents 76a611f + cdd7181 commit fa91d89

File tree

616 files changed

+72452
-14543
lines changed

Some content is hidden

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

616 files changed

+72452
-14543
lines changed

ChangeLog.md

Lines changed: 85 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,102 @@
1-
##2016.07.11 version 1.6.0
1+
##2016.07.11 version 1.6.0
2+
* **Behavioral change for -Force, –Confirm and $ConfirmPreference parameters for all cmdlets. We are changing this implementation to be in line with PowerShell guidelines. For most cmdlets, this means removing the Force parameter and to skip the ShouldProcess prompt, users will need to include the parameter: ‘-Confirm:$false’ in their PowerShell scripts.** This changes are addressing following issues:
3+
* Correct implementation of –WhatIf functionality, allowing a user to determine the effects of a cmdlet or script without making any actual changes
4+
* Control over prompting using a session-wide $ConfirmPreference, so that the user is prompted based on the impact of a prospective change (as reported in the ConfirmImpact setting in the cmdlet)
5+
* Cmdlet-specific control over confirmation prompts using the –Confirm parameter
6+
* Consistent use of ShouldContinue and the –Force parameter across cmdlets, for only those actions that would require prompting from the user due to the special nature of the changes (for example, deleting hidden files)
7+
* Consistency with other PowerShell cmdlets, so that PowerShell scripting knowledge from other cmdlets is immediately applicable to the Azure PowerShell cmdlets.
8+
9+
**Notice that now to *automatically skip all Prompts in all Circumstances* Azure PowerShell cmdlets require the user to supply two parameters:**
10+
```
11+
My-CmdletWithConfirmation –Confirm:$false -Force
12+
```
13+
* Azure Compute
14+
* Set-AzureRmVMADDomainExtension
15+
* Get-AzureRmVMADDomainExtension
16+
* -Redeploy parameter for Restart-AzureVM
17+
* -Validate parameter for Move-AzureService, Move-AzureStorageAccount, and Move-AzureVirtualNetwork
18+
* Name and version parameters for extension cmdlets are optional as before.
19+
* New-AzureVM can get a license type from VM object.
20+
* Azure Storage
21+
* Change Tags Parameter to Tag, and add parameter alias Tags
22+
- New-AzureRmStorageAccount
23+
- Set-AzureRmStorageAccount
24+
* Azure Network
25+
* New cmdlet added for Virtual Network Peering
26+
* Azure Redis Cache
27+
* New cmdlet added for Reset-AzureRmRedisCache
28+
* New cmdlet added for Export-AzureRmRedisCache
29+
* New cmdlet added for Import-AzureRmRedisCache
30+
* Modified cmdlet New-AzureRmRedisCache to include parameter change for vNet
231
* Azure SQL DB Backup/Restore
332
* Cmdlets for LTR (Long Term Retention) backup feature
4-
* Get-AzureRmSqlServerBackupLongTermRetentionVault
5-
* Get-AzureRmSqlDatabaseBackupLongTermRetentionPolicy
6-
* Set-AzureRmSqlServerBackupLongTermRetentionVault
7-
* Set-AzureRmSqlDatabaseBackupLongTermRetentionPolicy
33+
* Get-AzureRmSqlServerBackupLongTermRetentionVault
34+
* Get-AzureRmSqlDatabaseBackupLongTermRetentionPolicy
35+
* Set-AzureRmSqlServerBackupLongTermRetentionVault
36+
* Set-AzureRmSqlDatabaseBackupLongTermRetentionPolicy
837
* Restore-AzureRmSqlDatabase now supports point-in-time restore of a deleted database
938
* Restore-AzureRmSqlDatabase now supports restoring from a Long Term Retention backup
39+
* Azure LogicApp
40+
* Added LogicApp Integration accounts cmdlets.
41+
* Get-AzureRmIntegrationAccountAgreement
42+
* Get-AzureRmIntegrationAccountCallbackUrl
43+
* Get-AzureRmIntegrationAccountCertificate
44+
* Get-AzureRmIntegrationAccount
45+
* Get-AzureRmIntegrationAccountMap
46+
* Get-AzureRmIntegrationAccountPartner
47+
* Get-AzureRmIntegrationAccountSchema
48+
* New-AzureRmIntegrationAccountAgreement
49+
* New-AzureRmIntegrationAccountCertificate
50+
* New-AzureRmIntegrationAccount
51+
* New-AzureRmIntegrationAccountMap
52+
* New-AzureRmIntegrationAccountPartner
53+
* New-AzureRmIntegrationAccountSchema
54+
* Remove-AzureRmIntegrationAccountAgreement
55+
* Remove-AzureRmIntegrationAccountCertificate
56+
* Remove-AzureRmIntegrationAccount
57+
* Remove-AzureRmIntegrationAccountMap
58+
* Remove-AzureRmIntegrationAccountPartner
59+
* Remove-AzureRmIntegrationAccountSchema
60+
* Set-AzureRmIntegrationAccountAgreement
61+
* Set-AzureRmIntegrationAccountCertificate
62+
* Set-AzureRmIntegrationAccount
63+
* Set-AzureRmIntegrationAccountMap
64+
* Set-AzureRmIntegrationAccountPartner
65+
* Set-AzureRmIntegrationAccountSchema
1066
* Azure Data Lake Store
11-
* Drastically improve performance of file and folder upload and download.
12-
* This includes a slight change to the parameter names for download and inclusion of two new parameters for upload:
13-
* NumThreads -> PerFileThreadCount, used to indicate the number of threads to use in a single file
14-
* ConcurrentFileCount, used to indicate the number of files to upload/download in parallel for folder upload/download.
15-
* Default threading values are now designed to give a better all around throughput for most file sizes. If performance is not as desired, the values above can be modified to meet requirements.
67+
* Drastically improve performance of file and folder upload and download.
68+
* This includes a slight change to the parameter names for download and inclusion of two new parameters for upload:
69+
* NumThreads -> PerFileThreadCount, used to indicate the number of threads to use in a single file
70+
* ConcurrentFileCount, used to indicate the number of files to upload/download in parallel for folder upload/download.
71+
* Default threading values are now designed to give a better all around throughput for most file sizes. If performance is not as desired, the values above can be modified to meet requirements.
1672
* Azure Data Lake Analytics
17-
* Get-AzureRMDataLakeAnalyticsDataSource now returns all data sources when called with no arguments.
18-
* This change also removes the data source type parameter from the cmdlet.
19-
* This change results in a new object being returned for the list operation with the following properties:
20-
* Type, the type of data source
21-
* Name, the name of the data source
22-
* IsDefault, set to true if this is the default data source for the account
23-
* Get-AzureRMDataLakeAnalyticsJob fixed for list for certain date time offset values when filtering on submittedBefore and submittedAfter.
73+
* Get-AzureRMDataLakeAnalyticsDataSource now returns all data sources when called with no arguments.
74+
* This change also removes the data source type parameter from the cmdlet.
75+
* This change results in a new object being returned for the list operation with the following properties:
76+
* Type, the type of data source
77+
* Name, the name of the data source
78+
* IsDefault, set to true if this is the default data source for the account
79+
* Get-AzureRMDataLakeAnalyticsJob fixed for list for certain date time offset values when filtering on submittedBefore and submittedAfter.
2480
* Web Apps
2581
* Add Swap-AzureRmWebAppSlot cmdlet for regular swap and swap with preview
2682
* Extend Set-AzureRmWebAppSlot cmdlet to support auto swap
83+
* Azure API Management
84+
* Fixed Azure Api Management Deployment cmdlets for AzureChinaCloud.
85+
* Removed cmdlet Set-AzureRmApiManagementTenantGitAccess as Git Access is enabled by Default.
86+
* Azure Recovery Services Backup
87+
* Added support for the Azure SQL workload
88+
* Added support for backing up and restoring encrypted Azure VMs
89+
* Backup-AzureRmRecoveryServicesBackupItem - Added optional retention time feature for recovery points
90+
* Minor filter-related bug fixes in Get-AzureRmRecoveryServicesBackupContainer and Get-AzureRmRecoveryServicesBackupItem cmdlets
91+
* Azure Automation
92+
* Added Get-AzureRmAutomationHybridWorkerGroup
93+
2794
##2016.06.23 version 1.5.1
2895
* Azure Resource Manager
2996
- Fix a bug in New-AzureRmResourceGroupDeployment. In some deployments the cmdlet throws an exception with "Deployment 'deploymentName' could not be found." and causes the cmdlet to fail. The fix makes sure the deployment is created before getting operations.
3097
* AzureRM.Profile
3198
- Fix issues #2387, #2388 with SubscriptionId and TenantId ValidationSet in Set-AzureRMContext cmdlet
99+
32100
##2016.06.01 version 1.5.0
33101
* Azure Resource Manager
34102
- (Get/Set/New/Remove)-AzureRmResourceGroup cmdlets will now use the new autorest generated ARM assembly

setup/azurecmd.wxs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
33

4-
<?define productName="Microsoft Azure PowerShell - June 2016" ?>
4+
<?define productName="Microsoft Azure PowerShell - July 2016" ?>
55
<?define sourceDir="$(var.SolutionDir)..\src\Package\$(var.Configuration)" ?>
66
<?define caSourceDir="$(var.SolutionDir)setup\bin\$(var.Configuration)" ?>
77

8-
<?define version="1.5.1" ?>
8+
<?define version="1.6.0" ?>
99

1010
<Product Id="*"
1111
Name="$(var.productName)"

src/Common/Commands.Common.Authentication.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828

2929
[assembly: ComVisible(false)]
3030
[assembly: CLSCompliant(false)]
31-
[assembly: AssemblyVersion("1.5.1")]
32-
[assembly: AssemblyFileVersion("1.5.1")]
31+
[assembly: AssemblyVersion("1.6.0")]
32+
[assembly: AssemblyFileVersion("1.6.0")]
3333
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/Common/Commands.Common.Authentication/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@
4646
// You can specify all the values or you can default the Build and Revision Numbers
4747
// by using the '*' as shown below:
4848
// [assembly: AssemblyVersion("1.0.*")]
49-
[assembly: AssemblyVersion("1.5.1")]
50-
[assembly: AssemblyFileVersion("1.5.1")]
49+
[assembly: AssemblyVersion("1.6.0")]
50+
[assembly: AssemblyFileVersion("1.6.0")]

src/Common/Commands.Common.Storage/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
[assembly: ComVisible(false)]
2525
[assembly: CLSCompliant(false)]
2626
[assembly: Guid("c565107e-98a9-4703-85cd-a7efc3d8da7b")]
27-
[assembly: AssemblyVersion("1.5.1")]
28-
[assembly: AssemblyFileVersion("1.5.1")]
27+
[assembly: AssemblyVersion("1.6.0")]
28+
[assembly: AssemblyFileVersion("1.6.0")]

src/Common/Commands.Common/AzurePowerShell.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ public class AzurePowerShell
2626

2727
public const string AssemblyCopyright = "Copyright © Microsoft";
2828

29-
public const string AssemblyVersion = "1.5.1";
29+
public const string AssemblyVersion = "1.6.0";
3030

31-
public const string AssemblyFileVersion = "1.5.1";
31+
public const string AssemblyFileVersion = "1.6.0";
3232

3333
public const string ProfileFile = "AzureProfile.json";
3434

src/Common/Commands.Common/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
[assembly: ComVisible(false)]
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("4f3ab2e4-cc7a-43ac-bb15-f481fcf94d58")]
28-
[assembly: AssemblyVersion("1.5.1")]
29-
[assembly: AssemblyFileVersion("1.5.1")]
28+
[assembly: AssemblyVersion("1.6.0")]
29+
[assembly: AssemblyFileVersion("1.6.0")]
3030
#if SIGN
3131
[assembly: InternalsVisibleTo("Microsoft.WindowsAzure.Commands, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
3232
[assembly: InternalsVisibleTo("Microsoft.WindowsAzure.Commands.CloudService, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]

src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<HintPath>..\..\packages\Microsoft.Azure.Management.Resources.2.20.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll</HintPath>
5555
</Reference>
5656
<Reference Include="Microsoft.Azure.Test.Framework">
57-
<HintPath>..\..\packages\Microsoft.Azure.Test.Framework.1.0.5945.28173-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath>
57+
<HintPath>..\..\packages\Microsoft.Azure.Test.Framework.1.0.6026.28191-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath>
5858
</Reference>
5959
<Reference Include="Microsoft.Azure.Test.HttpRecorder">
6060
<HintPath>..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.0.5945.28173-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll</HintPath>

src/Common/Commands.ScenarioTests.Common/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.5.1")]
36-
[assembly: AssemblyFileVersion("1.5.1")]
35+
[assembly: AssemblyVersion("1.6.0")]
36+
[assembly: AssemblyFileVersion("1.6.0")]
3737
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/Common/Commands.ScenarioTests.Common/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<package id="Microsoft.Azure.Common" version="2.1.0" targetFramework="net45" />
55
<package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" />
66
<package id="Microsoft.Azure.Management.Resources" version="2.18.11-preview" targetFramework="net45" />
7-
<package id="Microsoft.Azure.Test.Framework" version="1.0.5945.28173-prerelease" targetFramework="net45" />
7+
<package id="Microsoft.Azure.Test.Framework" version="1.0.6026.28191-prerelease" targetFramework="net45" />
88
<package id="Microsoft.Azure.Test.HttpRecorder" version="1.0.5945.28173-prerelease" targetFramework="net45" />
99
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
1010
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />

src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@{
1010

1111
# Version number of this module.
12-
ModuleVersion = '1.1.2'
12+
ModuleVersion = '1.1.3'
1313

1414
# ID used to uniquely identify this module
1515
GUID = 'f875725d-8ce4-423f-a6af-ea880bc63f13'
@@ -45,7 +45,7 @@ CLRVersion='4.0'
4545
ProcessorArchitecture = 'None'
4646

4747
# Modules that must be imported into the global environment prior to importing this module
48-
RequiredModules = @( @{ ModuleName = 'AzureRM.Profile'; ModuleVersion = '1.0.10'})
48+
RequiredModules = @( @{ ModuleName = 'AzureRM.Profile'; ModuleVersion = '1.0.11'})
4949

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

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@
4242
// You can specify all the values or you can default the Build and Revision Numbers
4343
// by using the '*' as shown below:
4444

45-
[assembly: AssemblyVersion("1.1.2")]
46-
[assembly: AssemblyFileVersion("1.1.2")]
45+
[assembly: AssemblyVersion("1.1.3")]
46+
[assembly: AssemblyFileVersion("1.1.3")]

src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Commands.ApiManagement.Test.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@
6868
<SpecificVersion>False</SpecificVersion>
6969
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Resources.2.20.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll</HintPath>
7070
</Reference>
71-
<Reference Include="Microsoft.Azure.Test.Framework, Version=1.0.5885.21631, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
71+
<Reference Include="Microsoft.Azure.Test.Framework">
7272
<SpecificVersion>False</SpecificVersion>
73-
<HintPath>..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5945.28173-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath>
73+
<HintPath>..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.6026.28191-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath>
7474
</Reference>
7575
<Reference Include="Microsoft.Azure.Test.HttpRecorder, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
7676
<SpecificVersion>False</SpecificVersion>

src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@
4141
// You can specify all the values or you can default the Build and Revision Numbers
4242
// by using the '*' as shown below:
4343

44-
[assembly: AssemblyVersion("1.1.2")]
45-
[assembly: AssemblyFileVersion("1.1.2")]
44+
[assembly: AssemblyVersion("1.1.3")]
45+
[assembly: AssemblyFileVersion("1.1.3")]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<package id="Microsoft.Azure.Management.Authorization" version="1.0.0" targetFramework="net45" />
88
<package id="Microsoft.Azure.Management.Resources" version="2.20.0-preview" targetFramework="net45" />
99
<package id="Microsoft.Azure.Management.Storage" version="3.0.0" targetFramework="net45" />
10-
<package id="Microsoft.Azure.Test.Framework" version="1.0.5945.28173-prerelease" targetFramework="net45" />
10+
<package id="Microsoft.Azure.Test.Framework" version="1.0.6026.28191-prerelease" targetFramework="net45" />
1111
<package id="Microsoft.Azure.Test.HttpRecorder" version="1.0.5945.28173-prerelease" targetFramework="net45" />
1212
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
1313
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@
4141
// You can specify all the values or you can default the Build and Revision Numbers
4242
// by using the '*' as shown below:
4343

44-
[assembly: AssemblyVersion("1.1.2")]
45-
[assembly: AssemblyFileVersion("1.1.2")]
44+
[assembly: AssemblyVersion("1.1.3")]
45+
[assembly: AssemblyFileVersion("1.1.3")]

src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Commands.ApiManagement.ServiceManagement.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
</Reference>
7171
<Reference Include="Microsoft.Azure.Test.Framework">
7272
<SpecificVersion>False</SpecificVersion>
73-
<HintPath>..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5945.28173-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath>
73+
<HintPath>..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.6026.28191-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath>
7474
</Reference>
7575
<Reference Include="Microsoft.Azure.Test.HttpRecorder">
7676
<SpecificVersion>False</SpecificVersion>

src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
// You can specify all the values or you can default the Build and Revision Numbers
4343
// by using the '*' as shown below:
4444

45-
[assembly: AssemblyVersion("1.1.2")]
46-
[assembly: AssemblyFileVersion("1.1.2")]
45+
[assembly: AssemblyVersion("1.1.3")]
46+
[assembly: AssemblyFileVersion("1.1.3")]
4747
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/ResourceManager/ApiManagement/Commands.SMAPI.Test/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<package id="Microsoft.Azure.Management.Authorization" version="1.0.0" targetFramework="net45" />
99
<package id="Microsoft.Azure.Management.Resources" version="2.20.0-preview" targetFramework="net45" />
1010
<package id="Microsoft.Azure.Management.Storage" version="3.0.0" targetFramework="net45" />
11-
<package id="Microsoft.Azure.Test.Framework" version="1.0.5945.28173-prerelease" targetFramework="net45" />
11+
<package id="Microsoft.Azure.Test.Framework" version="1.0.6026.28191-prerelease" targetFramework="net45" />
1212
<package id="Microsoft.Azure.Test.HttpRecorder" version="1.0.5945.28173-prerelease" targetFramework="net45" />
1313
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
1414
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />

src/ResourceManager/Automation/AzureRM.Automation.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@{
1010

1111
# Version number of this module.
12-
ModuleVersion = '1.0.10'
12+
ModuleVersion = '1.0.11'
1313

1414
# ID used to uniquely identify this module
1515
GUID = 'bcea1c70-a32b-48c3-a05c-323e1c02f4d3'
@@ -45,7 +45,7 @@ CLRVersion='4.0'
4545
ProcessorArchitecture = 'None'
4646

4747
# Modules that must be imported into the global environment prior to importing this module
48-
RequiredModules = @( @{ ModuleName = 'AzureRM.Profile'; ModuleVersion = '1.0.10'})
48+
RequiredModules = @( @{ ModuleName = 'AzureRM.Profile'; ModuleVersion = '1.0.11'})
4949

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@
6767
<SpecificVersion>False</SpecificVersion>
6868
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Resources.2.20.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll</HintPath>
6969
</Reference>
70-
<Reference Include="Microsoft.Azure.Test.Framework, Version=1.0.5885.21631, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
70+
<Reference Include="Microsoft.Azure.Test.Framework">
7171
<SpecificVersion>False</SpecificVersion>
72-
<HintPath>..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5945.28173-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath>
72+
<HintPath>..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.6026.28191-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath>
7373
</Reference>
7474
<Reference Include="Microsoft.Azure.Test.HttpRecorder, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
7575
<SpecificVersion>False</SpecificVersion>

src/ResourceManager/Automation/Commands.Automation.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
// You can specify all the values or you can default the Build and Revision Numbers
4444
// by using the '*' as shown below:
4545

46-
[assembly: AssemblyVersion("1.0.10")]
47-
[assembly: AssemblyFileVersion("1.0.10")]
46+
[assembly: AssemblyVersion("1.0.11")]
47+
[assembly: AssemblyFileVersion("1.0.11")]
4848
[assembly: CLSCompliant(false)]
4949
[assembly: CollectionBehavior(DisableTestParallelization = true)]

0 commit comments

Comments
 (0)