We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef926a1 commit 9931405Copy full SHA for 9931405
src/Common/CustomAttributes/CmdletOutputBreakingChangeAttribute.cs
@@ -79,7 +79,7 @@ protected override string GetAttributeSpecificMessage()
79
message.Append(Resources.BreakingChangesAttributesCmdLetOutputPropertiesRemoved);
80
foreach (string property in DeprecatedOutputProperties)
81
{
82
- message.Append(" '{property}'");
+ message.Append(" '" + property + "'");
83
}
84
85
@@ -88,7 +88,7 @@ protected override string GetAttributeSpecificMessage()
88
message.Append(Resources.BreakingChangesAttributesCmdLetOutputPropertiesAdded);
89
foreach (string property in NewOutputProperties)
90
91
92
93
94
0 commit comments