From 3890acd8dad02cdb32b991d14b01bf76e63f7701 Mon Sep 17 00:00:00 2001 From: Scott Carlton Date: Tue, 6 Dec 2016 10:04:11 -0800 Subject: [PATCH] Fixed a missing interpolation operator --- src/dotnet/commands/dotnet-restore/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dotnet/commands/dotnet-restore/Program.cs b/src/dotnet/commands/dotnet-restore/Program.cs index 862118ff5..8d6e1b390 100644 --- a/src/dotnet/commands/dotnet-restore/Program.cs +++ b/src/dotnet/commands/dotnet-restore/Program.cs @@ -26,7 +26,7 @@ namespace Microsoft.DotNet.Tools.Restore cmd.HelpOption("-h|--help"); var argRoot = cmd.Argument( - "[{LocalizableStrings.CmdArgument}]", + $"[{LocalizableStrings.CmdArgument}]", LocalizableStrings.CmdArgumentDescription, multipleValues: true);