Removing duplicate space in "The Current OutputType is" usage

Removing duplicate space in "The Current OutputType is" usage

The LocalizableStrings.RunCommandExceptionUnableToRun3 always has as trailing space. Every instances does. Here we are adding a SECOND space so the result is:

The current OutputType is  'Library'.
This commit is contained in:
Scott Hanselman 2016-12-13 14:52:03 -08:00 committed by GitHub
parent 148351c12d
commit c50aeb318e

View file

@ -92,7 +92,7 @@ namespace Microsoft.DotNet.Tools.Run
throw new GracefulException(string.Join(Environment.NewLine,
LocalizableStrings.RunCommandExceptionUnableToRun1,
LocalizableStrings.RunCommandExceptionUnableToRun2,
$"{LocalizableStrings.RunCommandExceptionUnableToRun3} '{outputType}'."));
$"{LocalizableStrings.RunCommandExceptionUnableToRun3}'{outputType}'."));
}
string runArguments = projectInstance.GetPropertyValue(LocalizableStrings.RunCommandRunArguments);