Skip to content

Commit b1ec239

Browse files
committed
Merge pull request #168 from huangpf/dev
Dev
2 parents 0f990e4 + e04d6df commit b1ec239

File tree

263 files changed

+11664
-6733
lines changed

Some content is hidden

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

263 files changed

+11664
-6733
lines changed

ChangeLog.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
## 2015.10.09 version 1.0 preview
1+
* Azure Redis Cache
2+
* Set-AzureRedisCache - Premium and vNet support for redis cache
3+
* New-AzureRedisCache - Premium and vNet support for redis cache
4+
5+
## 2015.10.09 version 1.0 preview
26
* Azure Resource Manager Management Cmdlets
37
* New-AzureRmResourceGroup - Removed the template deployment parameters from this cmdlet. Template deployment will now be
48
handled only through the New-AzureRmResourceGroupDeployment

setup/Setup/CustomAction.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ private static void RunSTAThread(object sessionObject)
7878
powerShellShellLink.SetScreenBufferSize(120, 3000);
7979
powerShellShellLink.SetWindowSize(120, 50);
8080
}
81+
powerShellShellLink.SetFont();
8182
powerShellShellLink.Save();
8283
session.Log("UpdatePSShortcut: success");
8384
}

setup/Setup/SetExecutionPolicy.ps1

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# ----------------------------------------------------------------------------------
2+
#
3+
# Copyright Microsoft Corporation
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
# Unless required by applicable law or agreed to in writing, software
9+
# distributed under the License is distributed on an "AS IS" BASIS,
10+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
# See the License for the specific language governing permissions and
12+
# limitations under the License.
13+
# ----------------------------------------------------------------------------------
14+
15+
16+
try
17+
{
18+
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Force -ErrorAction "SilentlyContinue"
19+
}
20+
catch
21+
{
22+
# do not fail if execution policy cannot be set for this scope
23+
}
24+

setup/Setup/ShellLink.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,14 @@ public void SetWindowSize(short x, short y)
435435
this.consoleProperties.dwWindowSize = c;
436436
}
437437

438+
public void SetFont()
439+
{
440+
this.consoleProperties.FaceName = "Lucida Console";
441+
this.consoleProperties.uFontFamily = 54;
442+
this.consoleProperties.uFontWeight = 400;
443+
this.consoleProperties.uCursorSize = 25;
444+
}
445+
438446
// This does more than console colors
439447
private void SetConsoleProperties()
440448
{

setup/azurecmd.wxs

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

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

88
<?define version="0.9.9" ?>
99
<?define versionedStartMenuFolder="Microsoft Azure" ?>
1010
<?define staleStartMenuFolder="Windows Azure" ?>
11-
11+
1212
<Product Id="*"
1313
Name="$(var.productName)"
1414
Language="1033"
@@ -27,11 +27,31 @@
2727
<Property Id="ARPPRODUCTICON" Value="icon.ico" />
2828
<Property Id="ALLUSERS" Value="1" />
2929
<!-- per machine install-->
30-
3130
<Property Id="PSCOMPATIBLEVERSION">
3231
<RegistrySearch Id="PSCOMPATIBLEVERSION" Root="HKLM" Key="SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine" Name="PSCompatibleVersion" Type="raw" />
3332
</Property>
3433

34+
<SetProperty Action="SetBase64" Id="BaseModulesFolder" Value="[ProgramFiles64Folder]WindowsPowerShell\Modules" Before="AppSearch">
35+
VersionNT64
36+
</SetProperty>
37+
38+
<SetProperty Action="SetBase32" Id="BaseModulesFolder" Value="[ProgramFilesFolder]WindowsPowerShell\Modules" Before="AppSearch">
39+
NOT VersionNT64
40+
</SetProperty>
41+
42+
<SetProperty Id="POWERSHELLEXE" Value="[WindowsFolder]System32\WindowsPowerShell\v1.0\powershell.exe" Before="AppSearch"/>
43+
44+
<Property Id="POWERSHELLGETMODULESINSTALLED" >
45+
<DirectorySearch Id="PROGRAMFILESCONTAINER" Path="[BaseModulesFolder]">
46+
<DirectorySearch Id= "PROFILEMODULE" Path="AzureRM.Profile"/>
47+
</DirectorySearch>
48+
</Property>
49+
50+
<Condition Message="Azure Modules from the PowerShell Gallery are installed on this machine. Please remove these modules before installing this MSI.">
51+
<![CDATA[Installed or NOT(POWERSHELLGETMODULESINSTALLED >< "AzureRM.Profile")]]>
52+
</Condition>
53+
54+
3555
<Condition Message="This setup requires the Windows PowerShell 3.0 or compatible version to be installed.">
3656
<!-- This condition will break if PowerShell has version x3.0 and it is not compatible with 3.0 -->
3757
<![CDATA[Installed or (PSCOMPATIBLEVERSION >< "3.0")]]>
@@ -69,7 +89,13 @@
6989
<Component Id="PSModulePath.System" Guid="273525B9-7AAB-421A-90C8-8E50A1840B8D">
7090
<CreateFolder />
7191
<!-- Work around bug that PowerShell does not always consider default module paths. -->
72-
<Environment Id="PSModulePath.SystemAppRoot" Action="set" Name="PSMODULEPATH" Part="last" Value="[PowerShellFolder]ResourceManager;[PowerShellFolder]ServiceManagement" System="yes" />
92+
<Environment Id="PSModulePath.SystemAppRoot" Action="set" Name="PSMODULEPATH" Part="last" Value="[BaseModulesFolder];[PowerShellFolder]ResourceManager\AzureResourceManager;[PowerShellFolder]ServiceManagement" System="yes" />
93+
</Component>
94+
</DirectoryRef>
95+
96+
<DirectoryRef Id="PowerShellFolder">
97+
<Component Id="AzureSdkExecutionPolicyScript" Guid="3d0d589a-b34c-4c48-9a4c-df78f286c6a3">
98+
<File Id="AzureSdkExecutionPolicyScriptFile" KeyPath="yes" Source="$(var.SolutionDir)\Setup\SetExecutionPolicy.ps1" />
7399
</Component>
74100
</DirectoryRef>
75101

@@ -90,16 +116,19 @@
90116
<ComponentGroupRef Id="azurecmdfiles" />
91117
<ComponentRef Id="PSModulePath.System" />
92118
<ComponentRef Id="AzureSdkShortcut" />
119+
<ComponentRef Id="AzureSdkExecutionPolicyScript" />
93120
</Feature>
94121

95122
<Binary Id="CustomActions" SourceFile="$(var.caSourceDir)\Microsoft.WindowsAzure.Setup.CA.dll"/>
96123
<CustomAction Id="UpdatePSShortcut" BinaryKey="CustomActions" DllEntry="UpdatePSShortcut" Execute ="deferred" Impersonate="no"/>
97124
<CustomAction Id="SetCustomActionDataValue" Return="check" Property="UpdatePSShortcut"
98125
Value="ShortcutPath=[AzureSdkMenu]Microsoft Azure PowerShell.lnk;DefaultShortcutPath=[ProgramMenuFolder]System Tools\Windows PowerShell.lnk" />
126+
<CustomAction Id="SetExecutionPolicy" Property="POWERSHELLEXE" ExeCommand="-NoLogo -NoProfile -ExecutionPolicy Bypass -Command &quot;. \&quot;[PowerShellFolder]SetExecutionPolicy.ps1\&quot;&quot;" Execute="deferred" Impersonate="no" Return="check"/>
99127

100128
<InstallExecuteSequence>
101129
<Custom Action="SetCustomActionDataValue" After="CreateShortcuts">NOT Installed</Custom>
102130
<Custom Action="UpdatePSShortcut" After="SetCustomActionDataValue">NOT Installed</Custom>
131+
<Custom Action="SetExecutionPolicy" After="UpdatePSShortcut">NOT Installed</Custom>
103132
</InstallExecuteSequence>
104133

105134
<WixVariable Id="WixUILicenseRtf" Value="$(var.ProjectDir)\media\License.rtf" />

setup/azurecmdfiles.wxi

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
<DirectoryRef Id="PowerShellFolder">
55
<Directory Id="dirB60B5B1F56FA5598EFFC960CA393FDCE" Name="ResourceManager">
66
<Directory Id="dir9E409EB63EF03736275B51044C819FD8" Name="AzureResourceManager">
7-
<Component Id="cmp96F13C307DA6E4AAC35F3D147F21553F" Guid="*">
8-
<File Id="fil96C82365E5F5A2F2747805236B563DF0" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureResourceManager.psd1" />
9-
</Component>
107
<Directory Id="dirF9A46FF3188BA8C006D8942FCEFE5108" Name="Azure.Storage">
118
<Component Id="cmp0761C025FCF8EF027A5BC23C72777C52" Guid="*">
129
<File Id="fil80798000B169AC6D62DD8331A55CF6FF" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\Azure.Storage\Azure.Storage.psd1" />
@@ -495,6 +492,9 @@
495492
<Component Id="cmpC7297788AE102ED861765ADE84F7A59B" Guid="*">
496493
<File Id="filEA714AAE425D2451466447C9AFFE825E" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Compute\AzureRmProfileStartup.ps1" />
497494
</Component>
495+
<Component Id="cmpE2DA894B67E7F107B24A69AD6B87F8B3" Guid="*">
496+
<File Id="fil6EA712045B160BE36B4A3D2068D50F9F" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Compute\CheckVersions.ps1" />
497+
</Component>
498498
<Component Id="cmpCC409403AF670A9E0538AC743C61BD66" Guid="*">
499499
<File Id="fil68CB35902CE5A11BE50C9DE228B61D12" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Compute\Hyak.Common.dll" />
500500
</Component>
@@ -1128,6 +1128,9 @@
11281128
<Component Id="cmpD29EA01597258746011AE6EF9FC3D15A" Guid="*">
11291129
<File Id="filCE0262D8D43EF7AB4CDB25A0752B7121" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.KeyVault\System.Net.Http.Primitives.dll" />
11301130
</Component>
1131+
<Component Id="cmp8EE8340753317C13D69F692E7E42B175" Guid="*">
1132+
<File Id="filAE60D28516977FE205BBEB3D15EB53DE" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.KeyVault\System.Spatial.dll" />
1133+
</Component>
11311134
</Directory>
11321135
<Directory Id="dir76147B1D381C34B7638F2A844B5685DC" Name="AzureRM.Network">
11331136
<Component Id="cmp33F39A22183184A6B41F85DF085BAD29" Guid="*">
@@ -1154,6 +1157,9 @@
11541157
<Component Id="cmpFE91A142C4108B5EB50D6C5C5F4A4FA9" Guid="*">
11551158
<File Id="fil6D69005A7EDC2EEA35252F1E602D935C" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Network\AzureRmProfileStartup.ps1" />
11561159
</Component>
1160+
<Component Id="cmp065EDC002BB63B6AA573F18152B7240F" Guid="*">
1161+
<File Id="fil559CC58FC4CFCF2A101739440A55FBC7" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Network\CheckVersions.ps1" />
1162+
</Component>
11571163
<Component Id="cmp02E49F28BB0FA3174A478847B857A4D0" Guid="*">
11581164
<File Id="fil379E46A4E79152D00FBBBF3BF85A0BA2" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Network\Hyak.Common.dll" />
11591165
</Component>
@@ -1371,6 +1377,9 @@
13711377
<Component Id="cmp6F865A1998C9B6DAE0E8844D0EECF40A" Guid="*">
13721378
<File Id="filAF2791E9DF9A44B6D0F375786A415C61" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Profile\AzureRmProfileStartup.ps1" />
13731379
</Component>
1380+
<Component Id="cmp9002DD73D47754F2109499247914700F" Guid="*">
1381+
<File Id="filA918B8D44812C6306881A86655EAA785" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Profile\CheckVersions.ps1" />
1382+
</Component>
13741383
<Component Id="cmpD738842B230F04E64FD98E3E850E6338" Guid="*">
13751384
<File Id="fil73F9971478A8661859398F414D5BDE00" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Profile\Hyak.Common.dll" />
13761385
</Component>
@@ -1823,6 +1832,9 @@
18231832
<Component Id="cmpA3B81935598199F5BE6572F3D46DD2C5" Guid="*">
18241833
<File Id="fil8741CCFD373A03733A72E5956154D8FB" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Sql\ResourceManagerStartup.ps1" />
18251834
</Component>
1835+
<Component Id="cmpD50A1D50B7385232643B15A0E7CBAA57" Guid="*">
1836+
<File Id="fil433065D93BBE30A527CE610D0FCF2B08" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Sql\SqlStartup.ps1" />
1837+
</Component>
18261838
<Component Id="cmp56F9151EB19BE7D5CE2655D19ADF5C9A" Guid="*">
18271839
<File Id="filDC634F6E7D9EEFF24385BE6034AB2EE4" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Sql\System.Net.Http.Extensions.dll" />
18281840
</Component>
@@ -4355,7 +4367,6 @@
43554367
</Fragment>
43564368
<Fragment>
43574369
<ComponentGroup Id="azurecmdfiles">
4358-
<ComponentRef Id="cmp96F13C307DA6E4AAC35F3D147F21553F" />
43594370
<ComponentRef Id="cmp0761C025FCF8EF027A5BC23C72777C52" />
43604371
<ComponentRef Id="cmp658F4F28B5894F240AF3AE214E228C7A" />
43614372
<ComponentRef Id="cmpBE01F246267602912E7BB7FAC7C89B62" />
@@ -4515,6 +4526,7 @@
45154526
<ComponentRef Id="cmp9FDC7E987C84705E62A1E3E6958A7A34" />
45164527
<ComponentRef Id="cmp0BDDC10BCAFF9EC25710B20367203609" />
45174528
<ComponentRef Id="cmpC7297788AE102ED861765ADE84F7A59B" />
4529+
<ComponentRef Id="cmpE2DA894B67E7F107B24A69AD6B87F8B3" />
45184530
<ComponentRef Id="cmpCC409403AF670A9E0538AC743C61BD66" />
45194531
<ComponentRef Id="cmp8F649774D57C8E90EC765D8FCE36E32A" />
45204532
<ComponentRef Id="cmpFBB75A5451448B356C97E62D2C6C10A0" />
@@ -4722,6 +4734,7 @@
47224734
<ComponentRef Id="cmp8F99791178CB394FC285BF5F9DA21047" />
47234735
<ComponentRef Id="cmp55A0977CC2E4CD91F6738FFD78449307" />
47244736
<ComponentRef Id="cmpD29EA01597258746011AE6EF9FC3D15A" />
4737+
<ComponentRef Id="cmp8EE8340753317C13D69F692E7E42B175" />
47254738
<ComponentRef Id="cmp33F39A22183184A6B41F85DF085BAD29" />
47264739
<ComponentRef Id="cmp70B60DBD32D61BCA5715AB2D64131358" />
47274740
<ComponentRef Id="cmp92653399A1E9659661E74CA982C1D16A" />
@@ -4730,6 +4743,7 @@
47304743
<ComponentRef Id="cmp9F97686A6D38F8B72B2FB1D62529AF0F" />
47314744
<ComponentRef Id="cmpA398972142ABD0AC819F613EE832B65C" />
47324745
<ComponentRef Id="cmpFE91A142C4108B5EB50D6C5C5F4A4FA9" />
4746+
<ComponentRef Id="cmp065EDC002BB63B6AA573F18152B7240F" />
47334747
<ComponentRef Id="cmp02E49F28BB0FA3174A478847B857A4D0" />
47344748
<ComponentRef Id="cmp53B7AE5C484C188098FEE906B381461C" />
47354749
<ComponentRef Id="cmpFCCC1C3A49857F9109FEB6AE04888D08" />
@@ -4801,6 +4815,7 @@
48014815
<ComponentRef Id="cmpBBEEE168902DFD205E35F47468881929" />
48024816
<ComponentRef Id="cmpCDBCF0967EA30044FF3F4478A30C1D5B" />
48034817
<ComponentRef Id="cmp6F865A1998C9B6DAE0E8844D0EECF40A" />
4818+
<ComponentRef Id="cmp9002DD73D47754F2109499247914700F" />
48044819
<ComponentRef Id="cmpD738842B230F04E64FD98E3E850E6338" />
48054820
<ComponentRef Id="cmp2BE62623A92CD0986F0915CB16373E90" />
48064821
<ComponentRef Id="cmpCBBCCDE16C2F179A9160E366F5449CF4" />
@@ -4949,6 +4964,7 @@
49494964
<ComponentRef Id="cmp25F6948876AE28D1DB4430494E01EBB7" />
49504965
<ComponentRef Id="cmpE4F09171FB1B25EAC4AABD90F9EFA350" />
49514966
<ComponentRef Id="cmpA3B81935598199F5BE6572F3D46DD2C5" />
4967+
<ComponentRef Id="cmpD50A1D50B7385232643B15A0E7CBAA57" />
49524968
<ComponentRef Id="cmp56F9151EB19BE7D5CE2655D19ADF5C9A" />
49534969
<ComponentRef Id="cmp39A46C3BD11947E08479BBD49CB20104" />
49544970
<ComponentRef Id="cmpC1352E11D4D3526DFA43840F587B64D9" />

src/Common/Commands.Common.Storage/Commands.Common.Storage.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<HintPath>..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll</HintPath>
5757
</Reference>
5858
<Reference Include="Microsoft.Azure.Common.Authentication, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
59-
<HintPath>..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll</HintPath>
59+
<HintPath>..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll</HintPath>
6060
<Private>True</Private>
6161
</Reference>
6262
<Reference Include="Microsoft.Azure.Common.NetFramework, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

src/Common/Commands.Common.Storage/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<packages>
33
<package id="Hyak.Common" version="1.0.2" targetFramework="net45" />
44
<package id="Microsoft.Azure.Common" version="2.1.0" targetFramework="net45" />
5-
<package id="Microsoft.Azure.Common.Authentication" version="1.3.3-preview" targetFramework="net45" />
5+
<package id="Microsoft.Azure.Common.Authentication" version="1.3.4-preview" targetFramework="net45" />
66
<package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" />
77
<package id="Microsoft.Azure.KeyVault.Core" version="1.0.0" targetFramework="net45" />
88
<package id="Microsoft.Azure.Management.Resources" version="2.18.7-preview" targetFramework="net45" />

src/Common/Commands.Common/AzurePSCmdlet.cs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
using System.IO;
2626
using System.Management.Automation.Host;
2727
using System.Text;
28+
using System.Linq;
2829
using System.Threading;
2930

3031
namespace Microsoft.WindowsAzure.Commands.Utilities.Common
@@ -160,7 +161,10 @@ public static bool IsDataCollectionAllowed()
160161
protected bool CheckIfInteractive()
161162
{
162163
bool interactive = true;
163-
if (this.Host == null || this.Host.UI == null || this.Host.UI.RawUI == null)
164+
if (this.Host == null ||
165+
this.Host.UI == null ||
166+
this.Host.UI.RawUI == null ||
167+
Environment.GetCommandLineArgs().Any(s => s.Equals("-NonInteractive", StringComparison.OrdinalIgnoreCase)))
164168
{
165169
interactive = false;
166170
}
@@ -235,7 +239,7 @@ protected override void EndProcessing()
235239
DebugStreamTraceListener.RemoveAdalTracing(_adalListener);
236240
FlushDebugMessages();
237241

238-
AzureSession.ClientFactory.UserAgents.RemoveAll(u => u.Product.Name == ModuleName);
242+
AzureSession.ClientFactory.UserAgents.RemoveWhere(u => u.Product.Name == ModuleName);
239243
AzureSession.ClientFactory.RemoveHandler(typeof(CmdletInfoHandler));
240244
base.EndProcessing();
241245
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
</Reference>
6565
<Reference Include="Microsoft.Azure.Common.Authentication, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
6666
<SpecificVersion>False</SpecificVersion>
67-
<HintPath>..\..\packages\Microsoft.Azure.Common.Authentication.1.3.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll</HintPath>
67+
<HintPath>..\..\packages\Microsoft.Azure.Common.Authentication.1.3.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll</HintPath>
6868
</Reference>
6969
<Reference Include="Microsoft.Azure.Common.NetFramework">
7070
<SpecificVersion>False</SpecificVersion>

src/Common/Commands.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.ApplicationInsights" version="1.1.1-beta" targetFramework="net45" />
55
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.2" targetFramework="net45" />
66
<package id="Microsoft.Azure.Common" version="2.1.0" targetFramework="net45" />
7-
<package id="Microsoft.Azure.Common.Authentication" version="1.3.3-preview" targetFramework="net45" />
7+
<package id="Microsoft.Azure.Common.Authentication" version="1.3.4-preview" targetFramework="net45" />
88
<package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" />
99
<package id="Microsoft.Azure.Management.Resources" version="2.18.7-preview" targetFramework="net45" />
1010
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />

0 commit comments

Comments
 (0)