From 94f736711ea3552f92c15165d5e4a758dbc44dc1 Mon Sep 17 00:00:00 2001 From: Hyonho Lee Date: Fri, 26 Feb 2016 14:18:51 -0800 Subject: [PATCH 1/3] Fix build issue --- .../Extension/AEM/GetAzureRmVMAEMExtension.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs index c20368454452..80ff808d035d 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs @@ -127,11 +127,6 @@ public override void ExecuteCmdlet() }); } - private void WriteInformation(string message, params string[] args) - { - base.WriteInformation(String.Format(message, args), new string[0]); - } - private void WriteVerbose(string message, params object[] args) { base.WriteVerbose(String.Format(message, args)); From 9cee5c9d701418597ebe26dcad1f8cf48614331e Mon Sep 17 00:00:00 2001 From: Hyonho Lee Date: Fri, 26 Feb 2016 15:06:37 -0800 Subject: [PATCH 2/3] Fix build issue --- src/Common/Commands.Common/AzurePSCmdlet.cs | 6 ++++++ .../Extension/AEM/GetAzureRmVMAEMExtension.cs | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/src/Common/Commands.Common/AzurePSCmdlet.cs b/src/Common/Commands.Common/AzurePSCmdlet.cs index 9ac88c3f06aa..cd9ca79e9a28 100644 --- a/src/Common/Commands.Common/AzurePSCmdlet.cs +++ b/src/Common/Commands.Common/AzurePSCmdlet.cs @@ -327,6 +327,12 @@ protected bool IsVerbose() base.WriteObject(sendToPipeline, enumerateCollection); } + protected new void WriteInformation(object text, string[] tags) + { + FlushDebugMessages(); + base.WriteInformation(text, tags); + } + protected new void WriteVerbose(string text) { FlushDebugMessages(); diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs index 80ff808d035d..c20368454452 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs @@ -127,6 +127,11 @@ public override void ExecuteCmdlet() }); } + private void WriteInformation(string message, params string[] args) + { + base.WriteInformation(String.Format(message, args), new string[0]); + } + private void WriteVerbose(string message, params object[] args) { base.WriteVerbose(String.Format(message, args)); From 446231c931f2d684864d4b4d17ad3e2846263e41 Mon Sep 17 00:00:00 2001 From: Hyonho Lee Date: Fri, 26 Feb 2016 18:11:43 -0800 Subject: [PATCH 3/3] Remove information write. --- src/Common/Commands.Common/AzurePSCmdlet.cs | 6 ------ .../Extension/AEM/GetAzureRmVMAEMExtension.cs | 5 ----- 2 files changed, 11 deletions(-) diff --git a/src/Common/Commands.Common/AzurePSCmdlet.cs b/src/Common/Commands.Common/AzurePSCmdlet.cs index cd9ca79e9a28..9ac88c3f06aa 100644 --- a/src/Common/Commands.Common/AzurePSCmdlet.cs +++ b/src/Common/Commands.Common/AzurePSCmdlet.cs @@ -327,12 +327,6 @@ protected bool IsVerbose() base.WriteObject(sendToPipeline, enumerateCollection); } - protected new void WriteInformation(object text, string[] tags) - { - FlushDebugMessages(); - base.WriteInformation(text, tags); - } - protected new void WriteVerbose(string text) { FlushDebugMessages(); diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs index c20368454452..80ff808d035d 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs @@ -127,11 +127,6 @@ public override void ExecuteCmdlet() }); } - private void WriteInformation(string message, params string[] args) - { - base.WriteInformation(String.Format(message, args), new string[0]); - } - private void WriteVerbose(string message, params object[] args) { base.WriteVerbose(String.Format(message, args));