diff --git a/src/Common/CustomAttributes/CmdletOutputBreakingChangeAttribute.cs b/src/Common/CustomAttributes/CmdletOutputBreakingChangeAttribute.cs index 6a3432870b..84798ef267 100644 --- a/src/Common/CustomAttributes/CmdletOutputBreakingChangeAttribute.cs +++ b/src/Common/CustomAttributes/CmdletOutputBreakingChangeAttribute.cs @@ -79,7 +79,7 @@ protected override string GetAttributeSpecificMessage() message.Append(Resources.BreakingChangesAttributesCmdLetOutputPropertiesRemoved); foreach (string property in DeprecatedOutputProperties) { - message.Append(" '{property}'"); + message.Append(" '" + property + "'"); } } @@ -88,7 +88,7 @@ protected override string GetAttributeSpecificMessage() message.Append(Resources.BreakingChangesAttributesCmdLetOutputPropertiesAdded); foreach (string property in NewOutputProperties) { - message.Append(" '{property}'"); + message.Append(" '" + property + "'"); } } }