Skip to content

Commit 078b554

Browse files
committed
Merging from dev1
2 parents ef1a46a + 766a257 commit 078b554

File tree

292 files changed

+190832
-4332
lines changed

Some content is hidden

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

292 files changed

+190832
-4332
lines changed

ChangeLog.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
##2016.03.30 version 1.2.3
1+
##2016.03.30 version 1.3.0
2+
* AzureRM module
3+
- Installation performance fix
4+
* New Azure CDN cmdlets
25
* Azure Storage
36
* Made Protocol parameter in following cmdlets to be nullable and optional
47
- New-AzureStorageBlobSASToken
@@ -8,6 +11,10 @@
811
- New-AzureStorageQueueSASToken
912
- New-AzureStorageTableSASToken
1013
- New-AzureStorageAccountSASToken
14+
* Add Export-AzureRmResourceGroupTemplate cmdlet
15+
* Add VirtualMachineScaleSet cmdlet
16+
* Add "EA" value for permission parameter of Set-AzurePlatformVMImage
17+
* Documentation improvements in cmdlets
1118

1219
##2016.03.03 version 1.2.2
1320
* Azure Compute (ARM):

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ For detail descriptions and examples of the cmdlets, type
5959
* [Azure Stack](https://azure.microsoft.com/en-us/overview/azure-stack/)
6060
* [Windows Azure Pack](https://www.microsoft.com/en-us/server-cloud/windows-azure-pack.aspx)
6161
* [Microsoft Azure China](https://www.azure.cn/)
62-
* [USGovernment](https://azure.microsoft.com/en-us/features/gov/)
62+
* [Microsoft Azure US Government](https://azure.microsoft.com/en-us/features/gov/)
6363

6464
## Installation
6565

@@ -123,6 +123,15 @@ Add-AzureRmAccount -EnvironmentName AzureChinaCloud
123123
New-AzureRmResourceGroup -Name myresourceGroup -Location "China East"
124124
```
125125

126+
### Microsoft Azure US Government
127+
128+
```powershell
129+
Add-AzureRmAccount -EnvironmentName AzureUSGovernment
130+
131+
# use the cmdlets to manage your services/applications
132+
New-AzureRmResourceGroup -Name myresourceGroup -Location "US Gov Virginia"
133+
```
134+
126135
### Windows Azure Pack
127136

128137
```powershell

setup/azurecmd.wxs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<?define sourceDir="$(var.SolutionDir)..\src\Package\$(var.Configuration)" ?>
66
<?define caSourceDir="$(var.SolutionDir)setup\bin\$(var.Configuration)" ?>
77

8-
<?define version="1.2.2" ?>
8+
<?define version="1.3.0" ?>
99

1010
<Product Id="*"
1111
Name="$(var.productName)"
@@ -75,7 +75,7 @@
7575
<Component Id="PSModulePath.System" Guid="273525B9-7AAB-421A-90C8-8E50A1840B8D">
7676
<CreateFolder />
7777
<!-- Work around bug that PowerShell does not always consider default module paths. -->
78-
<Environment Id="PSModulePath.SystemAppRoot" Action="set" Name="PSMODULEPATH" Part="last" Value="[BaseModulesFolder];[PowerShellFolder]ResourceManager\AzureResourceManager\;[PowerShellFolder]ServiceManagement\;[PowerShellFolder]\Storage" System="yes" />
78+
<Environment Id="PSModulePath.SystemAppRoot" Action="set" Name="PSMODULEPATH" Part="last" Value="[BaseModulesFolder];[PowerShellFolder]ResourceManager\AzureResourceManager\;[PowerShellFolder]ServiceManagement\;[PowerShellFolder]Storage\" System="yes" />
7979
</Component>
8080
</DirectoryRef>
8181

setup/azurecmdfiles.wxi

Lines changed: 4 additions & 114 deletions
Original file line numberDiff line numberDiff line change
@@ -506,6 +506,9 @@
506506
<Component Id="cmp87DFE6BA28632B552074C8A05968ED49" Guid="*">
507507
<File Id="filB29D13A0412832DF84301430FAF5C2EB" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Cdn\AzureRM.Tags.psd1" />
508508
</Component>
509+
<Component Id="cmp5387447D3AEFB20D850B31BB0324D032" Guid="*">
510+
<File Id="fil96612AEDAC40E485D577E1BB70E1777F" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Cdn\CdnStartup.ps1" />
511+
</Component>
509512
<Component Id="cmpFCC54BA077C7C12B0A49F42DD3039435" Guid="*">
510513
<File Id="filD253995C681D155F4A3BAED9AC075F4D" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Cdn\Hyak.Common.dll" />
511514
</Component>
@@ -2001,92 +2004,6 @@
20012004
<File Id="fil3A29806CC321EA39756A69909C112925" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices\System.Net.Http.Primitives.dll" />
20022005
</Component>
20032006
</Directory>
2004-
<Directory Id="dir4B5D5A50B55B6D96C02DC2573A68955C" Name="AzureRM.RecoveryServices.Backup">
2005-
<Component Id="cmp131A9DE83A67006D51F1314A42E399CA" Guid="*">
2006-
<File Id="filA2C0D97A8033046D96249BA12C24D9D4" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\AzureRM.RecoveryServices.Backup.psd1" />
2007-
</Component>
2008-
<Component Id="cmpEB886EAAAF58ED0808ACCABDCC7707CA" Guid="*">
2009-
<File Id="filB0E96893813842B67380A6863ABBCC0D" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\AzureRM.RecoveryServices.psd1" />
2010-
</Component>
2011-
<Component Id="cmpB35FF47D728C871816F14A3529260DE9" Guid="*">
2012-
<File Id="fil4BCDE7803B14A0BC88A83E82379716A7" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Hyak.Common.dll" />
2013-
</Component>
2014-
<Component Id="cmp99A277F4A4EF20D7BFBB171691A4B7E7" Guid="*">
2015-
<File Id="fil193C22E9D7D487844F6F0FD30BB8FB26" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.ApplicationInsights.dll" />
2016-
</Component>
2017-
<Component Id="cmp1675F88279F58B72A180AF1411111337" Guid="*">
2018-
<File Id="fil368A68C98DD3F0B808B02BBF24EBB9AC" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Azure.Commands.Common.Authentication.dll" />
2019-
</Component>
2020-
<Component Id="cmp787B2B1E92B4AEF145134D74C17913C9" Guid="*">
2021-
<File Id="fil4414EC37DBB3B801C0176E172A8566FD" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Azure.Commands.RecoveryServices.ARM.dll" />
2022-
</Component>
2023-
<Component Id="cmpE5C4E7687DB1C6113A30F1D9CE41182F" Guid="*">
2024-
<File Id="fil1DF400D4DB252DE79904817997C7CB41" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Azure.Commands.RecoveryServices.ARM.dll-help.xml" />
2025-
</Component>
2026-
<Component Id="cmpB5BF9FBFFC4EDD83B9F7135CF42CB617" Guid="*">
2027-
<File Id="fil64AAA98F94DB6985D3A60FF7570C5E4A" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Azure.Commands.RecoveryServices.Backup.dll" />
2028-
</Component>
2029-
<Component Id="cmp7E42CC4AEA15FEF46E621AD38CC09F5A" Guid="*">
2030-
<File Id="filB3BB12CA661C1C8E6E7BE93BD77D781D" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Azure.Commands.RecoveryServices.Backup.format.ps1xml" />
2031-
</Component>
2032-
<Component Id="cmpB7B864E9C70EE65B799C79119DF7E80B" Guid="*">
2033-
<File Id="fil53BEB99E0373F87AA8C1DE1E39F13115" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Azure.Commands.RecoveryServices.Backup.Helpers.dll" />
2034-
</Component>
2035-
<Component Id="cmp298EE60DD6AAA12C33CA9E9EDDE4D674" Guid="*">
2036-
<File Id="filCA9A0EEBDB33D088D4D0EB9555189CD6" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Azure.Commands.RecoveryServices.Backup.HydraAdapter.dll" />
2037-
</Component>
2038-
<Component Id="cmp8826130AB84A23A8748B2E58087F1733" Guid="*">
2039-
<File Id="filBDEE1F034CEDF43D3B10E1DCA9DF81C0" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Azure.Commands.RecoveryServices.Backup.Logger.dll" />
2040-
</Component>
2041-
<Component Id="cmp705D3AFB5E86339823E569C4645A139F" Guid="*">
2042-
<File Id="filF87916ADE8086D552AFBF5F86147DB57" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Azure.Commands.RecoveryServices.Backup.Models.dll" />
2043-
</Component>
2044-
<Component Id="cmp3CBA7972F4711484D7FFF19457023268" Guid="*">
2045-
<File Id="filFEB151053DDC35E6643F363B07EC1EE3" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Azure.Commands.RecoveryServices.Backup.Providers.dll" />
2046-
</Component>
2047-
<Component Id="cmpDD61A35D79AF0DB08D533DDD646150DC" Guid="*">
2048-
<File Id="filF23BA348008E142BB0CEBEBDBD6F0B09" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Azure.Commands.ResourceManager.Common.dll" />
2049-
</Component>
2050-
<Component Id="cmp577E28EE57A416E3052CEE1BD21E5990" Guid="*">
2051-
<File Id="filC0711EC11D3FDA55E7F0015642F4BBC2" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Azure.Common.dll" />
2052-
</Component>
2053-
<Component Id="cmp403248FE1CECDB2218740975E268E81C" Guid="*">
2054-
<File Id="fil6311352FB4850E9DAC49E5FCCA907E9B" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Azure.Common.NetFramework.dll" />
2055-
</Component>
2056-
<Component Id="cmp16B849AA6669D83462B54D42D739CCCC" Guid="*">
2057-
<File Id="filE7E1056326FD5C43C9A9CDEBA5395825" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Azure.Management.RecoveryServices.dll" />
2058-
</Component>
2059-
<Component Id="cmpC96F162D3A5B03822697EB2BE5B4D5EB" Guid="*">
2060-
<File Id="filBF5932AC23F8EBCB6F98F17FF84774EF" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Azure.Management.RecoveryServicesBackupManagement.dll" />
2061-
</Component>
2062-
<Component Id="cmpA2EFAF047A9595A3CA7DFC6031140F27" Guid="*">
2063-
<File Id="fil9CAF7845821BBD039F828C617305D835" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.IdentityModel.Clients.ActiveDirectory.dll" />
2064-
</Component>
2065-
<Component Id="cmp902DC2364C6FF451A60B4D115B5DC7A9" Guid="*">
2066-
<File Id="filDFC93A6AA2A808957B249CC88C7D6EE5" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll" />
2067-
</Component>
2068-
<Component Id="cmpF8AEF0C5D785D40AEC8F1BF4ACE4E939" Guid="*">
2069-
<File Id="filA708CDDEB8C8A8363E22F4C83953E14E" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Rest.ClientRuntime.dll" />
2070-
</Component>
2071-
<Component Id="cmp0FB4C1F5BB0FB399774156C4B56696B8" Guid="*">
2072-
<File Id="fil4E1010AEBDF69B9DF75CE473426C64B7" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.Threading.Tasks.dll" />
2073-
</Component>
2074-
<Component Id="cmp7B84FC694FB5281CF08E6F1B41D07E12" Guid="*">
2075-
<File Id="filF61F62275153BB9F26EB1521CB9F8499" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.WindowsAzure.Commands.Common.dll" />
2076-
</Component>
2077-
<Component Id="cmpF9EE1FA96DC6D8D178B61CD12160F541" Guid="*">
2078-
<File Id="fil60C54B33813267CA413696B2DA8D7864" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.WindowsAzure.Management.dll" />
2079-
</Component>
2080-
<Component Id="cmp829F9EDD9A1D61A93ABE0F823CA9C181" Guid="*">
2081-
<File Id="fil187A39E94510EE8FA451727EFDD1793C" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Microsoft.WindowsAzure.Management.Scheduler.dll" />
2082-
</Component>
2083-
<Component Id="cmp517D253BF8B4A6D2010F79CA7DF1BEF5" Guid="*">
2084-
<File Id="fil0C3EEB7F44300C37492FACA1F361D1C6" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Newtonsoft.Json.dll" />
2085-
</Component>
2086-
<Component Id="cmp91B9EAC62A0387B3AF8AD38F521C37B2" Guid="*">
2087-
<File Id="fil5512E9FE988FAF589373CE2C48F046FF" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RecoveryServices.Backup\Security.Cryptography.dll" />
2088-
</Component>
2089-
</Directory>
20902007
<Directory Id="dir81EE6B6C66E21DBFAFE07FA058F415D6" Name="AzureRM.RedisCache">
20912008
<Component Id="cmp301F9E8FA547D7C9A0DF4FF20F87815D" Guid="*">
20922009
<File Id="fil1A611C57F01D0929B21DD9483DAF7EE0" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RedisCache\AzureRM.RedisCache.psd1" />
@@ -5223,6 +5140,7 @@
52235140
<ComponentRef Id="cmp22BC5873E0018F5801CD486C6CBCE0C5" />
52245141
<ComponentRef Id="cmpB7108FC1E0DA3A2DABE2F5A549025C62" />
52255142
<ComponentRef Id="cmp87DFE6BA28632B552074C8A05968ED49" />
5143+
<ComponentRef Id="cmp5387447D3AEFB20D850B31BB0324D032" />
52265144
<ComponentRef Id="cmpFCC54BA077C7C12B0A49F42DD3039435" />
52275145
<ComponentRef Id="cmp984FE30B4A873A5B1BC8F7E85B1CEF85" />
52285146
<ComponentRef Id="cmp2F3E4B9B10BAC8DA1FA711C6B756E1D1" />
@@ -5711,34 +5629,6 @@
57115629
<ComponentRef Id="cmp6507BFAC437859C861A9F8D0535A62ED" />
57125630
<ComponentRef Id="cmpC00974919B90C9055BED1F2A9DA95441" />
57135631
<ComponentRef Id="cmpE300D8B185C427E05E95BA97413F6CC8" />
5714-
<ComponentRef Id="cmp131A9DE83A67006D51F1314A42E399CA" />
5715-
<ComponentRef Id="cmpEB886EAAAF58ED0808ACCABDCC7707CA" />
5716-
<ComponentRef Id="cmpB35FF47D728C871816F14A3529260DE9" />
5717-
<ComponentRef Id="cmp99A277F4A4EF20D7BFBB171691A4B7E7" />
5718-
<ComponentRef Id="cmp1675F88279F58B72A180AF1411111337" />
5719-
<ComponentRef Id="cmp787B2B1E92B4AEF145134D74C17913C9" />
5720-
<ComponentRef Id="cmpE5C4E7687DB1C6113A30F1D9CE41182F" />
5721-
<ComponentRef Id="cmpB5BF9FBFFC4EDD83B9F7135CF42CB617" />
5722-
<ComponentRef Id="cmp7E42CC4AEA15FEF46E621AD38CC09F5A" />
5723-
<ComponentRef Id="cmpB7B864E9C70EE65B799C79119DF7E80B" />
5724-
<ComponentRef Id="cmp298EE60DD6AAA12C33CA9E9EDDE4D674" />
5725-
<ComponentRef Id="cmp8826130AB84A23A8748B2E58087F1733" />
5726-
<ComponentRef Id="cmp705D3AFB5E86339823E569C4645A139F" />
5727-
<ComponentRef Id="cmp3CBA7972F4711484D7FFF19457023268" />
5728-
<ComponentRef Id="cmpDD61A35D79AF0DB08D533DDD646150DC" />
5729-
<ComponentRef Id="cmp577E28EE57A416E3052CEE1BD21E5990" />
5730-
<ComponentRef Id="cmp403248FE1CECDB2218740975E268E81C" />
5731-
<ComponentRef Id="cmp16B849AA6669D83462B54D42D739CCCC" />
5732-
<ComponentRef Id="cmpC96F162D3A5B03822697EB2BE5B4D5EB" />
5733-
<ComponentRef Id="cmpA2EFAF047A9595A3CA7DFC6031140F27" />
5734-
<ComponentRef Id="cmp902DC2364C6FF451A60B4D115B5DC7A9" />
5735-
<ComponentRef Id="cmpF8AEF0C5D785D40AEC8F1BF4ACE4E939" />
5736-
<ComponentRef Id="cmp0FB4C1F5BB0FB399774156C4B56696B8" />
5737-
<ComponentRef Id="cmp7B84FC694FB5281CF08E6F1B41D07E12" />
5738-
<ComponentRef Id="cmpF9EE1FA96DC6D8D178B61CD12160F541" />
5739-
<ComponentRef Id="cmp829F9EDD9A1D61A93ABE0F823CA9C181" />
5740-
<ComponentRef Id="cmp517D253BF8B4A6D2010F79CA7DF1BEF5" />
5741-
<ComponentRef Id="cmp91B9EAC62A0387B3AF8AD38F521C37B2" />
57425632
<ComponentRef Id="cmp301F9E8FA547D7C9A0DF4FF20F87815D" />
57435633
<ComponentRef Id="cmp5EF3051C386C8DAA602E772A7C258726" />
57445634
<ComponentRef Id="cmpD143AF1A4E05D7D8425777ECA2F5440D" />

src/AzureRT.testsettings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<Description>These are test settings for AzureRT test run.</Description>
88
<Deployment>
99
<DeploymentItem filename="ServiceManagement\Compute\Commands.ServiceManagement.Test\Resources\" />
10-
<DeploymentItem filename="Package\Debug\" />
10+
<DeploymentItem filename="ServiceManagement\Compute\Commands.ServiceManagement.Test\bin\Debug\" />
1111
</Deployment>
1212
<Execution parallelTestCount="0">
1313
<Timeouts testTimeout="3000000" />

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.0.4")]
32-
[assembly: AssemblyFileVersion("1.0.4")]
31+
[assembly: AssemblyVersion("1.3.0")]
32+
[assembly: AssemblyFileVersion("1.3.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.0.0.0")]
50-
[assembly: AssemblyFileVersion("1.0.0.0")]
49+
[assembly: AssemblyVersion("1.3.0")]
50+
[assembly: AssemblyFileVersion("1.3.0")]

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
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.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.3.0")]
36+
[assembly: AssemblyFileVersion("1.3.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.0.5")]
28-
[assembly: AssemblyFileVersion("1.0.5")]
27+
[assembly: AssemblyVersion("1.3.0")]
28+
[assembly: AssemblyFileVersion("1.3.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.0.5";
29+
public const string AssemblyVersion = "1.3.0";
3030

31-
public const string AssemblyFileVersion = "1.0.5";
31+
public const string AssemblyFileVersion = "1.3.0";
3232

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

0 commit comments

Comments
 (0)