fixed typos
This commit is contained in:
parent
70443d5544
commit
b605381165
3 changed files with 6 additions and 6 deletions
|
@ -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.";
|
||||
}
|
||||
}
|
|
@ -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";
|
||||
|
||||
|
|
|
@ -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 <PATH_TO_RESULTS_DIRECTORY>";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue