diff --git a/src/Accounts/Accounts/Account/ConnectAzureRmAccount.cs b/src/Accounts/Accounts/Account/ConnectAzureRmAccount.cs index 38801032532c..fd85dc85d406 100644 --- a/src/Accounts/Accounts/Account/ConnectAzureRmAccount.cs +++ b/src/Accounts/Accounts/Account/ConnectAzureRmAccount.cs @@ -37,8 +37,6 @@ using Microsoft.WindowsAzure.Commands.Common; using Microsoft.WindowsAzure.Commands.Utilities.Common; -using System.Runtime.InteropServices; - namespace Microsoft.Azure.Commands.Profile { /// @@ -368,7 +366,7 @@ public override void ExecuteCmdlet() if( !string.IsNullOrWhiteSpace(CertificatePath)) { azureAccount.SetProperty(AzureAccount.Property.CertificatePath, CertificatePath); - if (this.IsBound(nameof(CertificatePassword))) + if (CertificatePassword != null) { azureAccount.SetProperty(AzureAccount.Property.CertificatePassword, CertificatePassword.ConvertToString()); } @@ -377,7 +375,6 @@ public override void ExecuteCmdlet() if ((ParameterSetName == ServicePrincipalCertificateParameterSet || ParameterSetName == ServicePrincipalCertificateFileParameterSet) && SendCertificateChain) { - //fixme azureAccount.SetProperty(AzureAccount.Property.SendCertificateChain, SendCertificateChain.ToString()); WriteDebug("SendCertificateChain is set."); } diff --git a/tools/Common.Netcore.Dependencies.targets b/tools/Common.Netcore.Dependencies.targets index 3504e9d0deab..b06b1e1212e9 100644 --- a/tools/Common.Netcore.Dependencies.targets +++ b/tools/Common.Netcore.Dependencies.targets @@ -3,21 +3,21 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -35,7 +35,7 @@ - $(NugetPackageRoot)\microsoft.azure.powershell.storage\1.3.32-preview\tools\ + $(NugetPackageRoot)\microsoft.azure.powershell.storage\1.3.34-preview\tools\