From b6053811653b0e63777be5a856fe448e30c8538b Mon Sep 17 00:00:00 2001 From: Maira Wenzel Date: Wed, 1 Feb 2017 15:30:35 -0800 Subject: [PATCH] fixed typos --- src/dotnet/commands/dotnet-migrate/LocalizableStrings.cs | 6 +++--- src/dotnet/commands/dotnet-publish/LocalizableStrings.cs | 2 +- src/dotnet/commands/dotnet-test/LocalizableStrings.cs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/dotnet/commands/dotnet-migrate/LocalizableStrings.cs b/src/dotnet/commands/dotnet-migrate/LocalizableStrings.cs index f443a269c..2d7a1ba86 100644 --- a/src/dotnet/commands/dotnet-migrate/LocalizableStrings.cs +++ b/src/dotnet/commands/dotnet-migrate/LocalizableStrings.cs @@ -17,11 +17,11 @@ Defaults to current directory if nothing is specified."; public const string CmdTemplateDescription = "Base MSBuild template to use for migrated app. The default is the project included in dotnet new."; - public const string CmdVersionDescription = "The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new."; + public const string CmdVersionDescription = "The version of the SDK package that will be referenced in the migrated app. The default is the version of the SDK in dotnet new."; public const string CmdXprojFileDescription = "The path to the xproj file to use. Required when there is more than one xproj in a project directory."; - public const string CmdSkipProjectReferencesDescription = "Skip migrating project references. By default project references are migrated recursively."; + public const string CmdSkipProjectReferencesDescription = "Skip migrating project references. By default, project references are migrated recursively."; public const string CmdReportFileDescription = "Output migration report to the given file in addition to the console."; @@ -31,6 +31,6 @@ Defaults to current directory if nothing is specified."; public const string MigrationFailedError = "Migration failed."; - public const string MigrationAdditionalHelp = "Your project has been migrated to the .csproj format and can be used with this build of the .NET Core Tools. Please visit https://aka.ms/coremigration to report issues or ask for help."; + public const string MigrationAdditionalHelp = "Your project has been migrated to the .csproj format and can be used with this build of the .NET Core Tools. Visit https://aka.ms/coremigration to report issues or ask for help."; } } \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-publish/LocalizableStrings.cs b/src/dotnet/commands/dotnet-publish/LocalizableStrings.cs index e328bafa0..cb81b0e3f 100644 --- a/src/dotnet/commands/dotnet-publish/LocalizableStrings.cs +++ b/src/dotnet/commands/dotnet-publish/LocalizableStrings.cs @@ -16,7 +16,7 @@ public const string RuntimeOption = "RUNTIME_IDENTIFIER"; - public const string RuntimeOptionDescription = "Publish the project for a given runtime. This is used when creating self-contained deployment. Default is to publish a framework-dependented app."; + public const string RuntimeOptionDescription = "Publish the project for a given runtime. This is used when creating self-contained deployment. Default is to publish a framework-dependent app."; public const string OutputOption = "OUTPUT_DIR"; diff --git a/src/dotnet/commands/dotnet-test/LocalizableStrings.cs b/src/dotnet/commands/dotnet-test/LocalizableStrings.cs index af567dceb..50f609475 100644 --- a/src/dotnet/commands/dotnet-test/LocalizableStrings.cs +++ b/src/dotnet/commands/dotnet-test/LocalizableStrings.cs @@ -53,9 +53,9 @@ public const string CmdNoBuildDescription = @"Do not build project before testing."; - public const string RunSettingsArgsHelpText = @"Any extra commandline runsettings arguments that should be passed to vstest. See 'dotnet vstest --help' for available options. + public const string RunSettingsArgsHelpText = @"Any extra command-line runsettings arguments that should be passed to vstest. See 'dotnet vstest --help' for available options. Example: -- RunConfiguration.ResultsDirectory=""C:\users\user\desktop\Results Directory"" MSTest.DeploymentEnabled=false"; - public const string CmdResultsDirectoryDescription = @"Test results directory will be created in specified path if not exists. + public const string CmdResultsDirectoryDescription = @"Test results directory will be created in the specified path if it doesn't exist. Example: --results-directory "; } }