Fixed spacing for some strings (#4943)

Some strings lost a space before .NET for some reason. Fixed now.
This commit is contained in:
Scott Carlton 2016-12-07 00:46:40 -08:00 committed by Piotr Puszkiewicz
parent 7b109e4b53
commit d29925a689

View file

@ -30,13 +30,13 @@
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";