Skip to content

Commit a8235d6

Browse files
committed
use string literals
1 parent de03526 commit a8235d6

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

src/Cli/dotnet/Commands/Package/List/ListPackageReferencesCommand.cs

+11-10
Original file line numberDiff line numberDiff line change
@@ -66,16 +66,17 @@ private int RunRestore(string projectOrSolution, ReportOutputFormat formatOption
6666
{
6767
if (formatOption == ReportOutputFormat.json)
6868
{
69-
string jsonError =
70-
"{\r\n" +
71-
" \"version\": 1,\r\n" +
72-
" \"problems\": [\r\n" +
73-
" {\r\n" +
74-
$" \"text\": \"{String.Format(CultureInfo.CurrentCulture, LocalizableStrings.Error_restore)}\",\r\n" +
75-
" \"level\": \"error\"\r\n" +
76-
" }\r\n" +
77-
" ]\r\n" +
78-
"}";
69+
string jsonError = $$"""
70+
{
71+
"version": 1,
72+
"problems": [
73+
{
74+
"text": "{{String.Format(CultureInfo.CurrentCulture, LocalizableStrings.Error_restore)}}",
75+
"level": "error"
76+
}
77+
]
78+
}
79+
""";
7980
Console.WriteLine(jsonError);
8081
}
8182
else

0 commit comments

Comments
 (0)