From 3890acd8dad02cdb32b991d14b01bf76e63f7701 Mon Sep 17 00:00:00 2001 From: Scott Carlton Date: Tue, 6 Dec 2016 10:04:11 -0800 Subject: [PATCH 1/2] 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 862118ff51..8d6e1b390b 100644 --- a/src/dotnet/commands/dotnet-restore/Program.cs +++ b/src/dotnet/commands/dotnet-restore/Program.cs @@ -26,7 +26,7 @@ public static int Run(string[] args) cmd.HelpOption("-h|--help"); var argRoot = cmd.Argument( - "[{LocalizableStrings.CmdArgument}]", + $"[{LocalizableStrings.CmdArgument}]", LocalizableStrings.CmdArgumentDescription, multipleValues: true); From d29925a6892605bd8fc8a55361f92668d542310d Mon Sep 17 00:00:00 2001 From: Scott Carlton Date: Wed, 7 Dec 2016 00:46:40 -0800 Subject: [PATCH 2/2] Fixed spacing for some strings (#4943) Some strings lost a space before .NET for some reason. Fixed now. --- src/dotnet/commands/dotnet-help/LocalizableStrings.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dotnet/commands/dotnet-help/LocalizableStrings.cs b/src/dotnet/commands/dotnet-help/LocalizableStrings.cs index afca05ce88..952d5bf1d3 100644 --- a/src/dotnet/commands/dotnet-help/LocalizableStrings.cs +++ b/src/dotnet/commands/dotnet-help/LocalizableStrings.cs @@ -30,13 +30,13 @@ internal class LocalizableStrings public const string NewDefinition = "Initialize a basic .NET project"; - public const string RestoreDefinition = "Restore dependencies specified in the.NET project"; + public const string RestoreDefinition = "Restore dependencies specified in the .NET project"; public const string BuildDefinition = "Builds a .NET project"; public const string PublishDefinition = "Publishes a .NET project for deployment (including the runtime)"; - public const string RunDefinition = "Compiles and immediately executes a.NET project"; + public const string RunDefinition = "Compiles and immediately executes a .NET project"; public const string TestDefinition = "Runs unit tests using the test runner specified in the project";