Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/dotnet/commands/dotnet-help/LocalizableStrings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down
2 changes: 1 addition & 1 deletion src/dotnet/commands/dotnet-restore/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down