Skip to content

Commit 9cee5c9

Browse files
committed
Fix build issue
1 parent 94f7367 commit 9cee5c9

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/Common/Commands.Common/AzurePSCmdlet.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,12 @@ protected bool IsVerbose()
327327
base.WriteObject(sendToPipeline, enumerateCollection);
328328
}
329329

330+
protected new void WriteInformation(object text, string[] tags)
331+
{
332+
FlushDebugMessages();
333+
base.WriteInformation(text, tags);
334+
}
335+
330336
protected new void WriteVerbose(string text)
331337
{
332338
FlushDebugMessages();

src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,11 @@ public override void ExecuteCmdlet()
127127
});
128128
}
129129

130+
private void WriteInformation(string message, params string[] args)
131+
{
132+
base.WriteInformation(String.Format(message, args), new string[0]);
133+
}
134+
130135
private void WriteVerbose(string message, params object[] args)
131136
{
132137
base.WriteVerbose(String.Format(message, args));

0 commit comments

Comments
 (0)