2017-03-02 21:04:03 -08:00
|
|
|
|
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Tools.Restore
|
2016-11-19 11:45:46 -08:00
|
|
|
|
{
|
|
|
|
|
internal class LocalizableStrings
|
|
|
|
|
{
|
2016-12-15 23:11:18 -08:00
|
|
|
|
public const string AppFullName = ".NET dependency restorer";
|
2016-11-19 11:45:46 -08:00
|
|
|
|
|
|
|
|
|
public const string AppDescription = "restore for msbuild";
|
|
|
|
|
|
2016-12-16 14:47:27 -08:00
|
|
|
|
public const string CmdArgument = "PROJECT";
|
2016-11-19 11:45:46 -08:00
|
|
|
|
|
|
|
|
|
public const string CmdArgumentDescription = "Optional path to a project file or MSBuild arguments.";
|
|
|
|
|
|
2016-12-16 14:47:27 -08:00
|
|
|
|
public const string CmdSourceOption = "SOURCE";
|
2016-11-19 11:45:46 -08:00
|
|
|
|
|
|
|
|
|
public const string CmdSourceOptionDescription = "Specifies a NuGet package source to use during the restore.";
|
|
|
|
|
|
2016-12-18 22:42:54 -06:00
|
|
|
|
public const string CmdRuntimeOption = "RUNTIME_IDENTIFIER";
|
|
|
|
|
|
|
|
|
|
public const string CmdRuntimeOptionDescription = "Target runtime to restore packages for.";
|
|
|
|
|
|
2016-12-16 14:47:27 -08:00
|
|
|
|
public const string CmdPackagesOption = "PACKAGES_DIRECTORY";
|
2016-11-19 11:45:46 -08:00
|
|
|
|
|
|
|
|
|
public const string CmdPackagesOptionDescription = "Directory to install packages in.";
|
|
|
|
|
|
|
|
|
|
public const string CmdDisableParallelOptionDescription = "Disables restoring multiple projects in parallel.";
|
|
|
|
|
|
2016-12-16 14:47:27 -08:00
|
|
|
|
public const string CmdConfigFileOption = "FILE";
|
2016-11-19 11:45:46 -08:00
|
|
|
|
|
|
|
|
|
public const string CmdConfigFileOptionDescription = "The NuGet configuration file to use.";
|
|
|
|
|
|
|
|
|
|
public const string CmdNoCacheOptionDescription = "Do not cache packages and http requests.";
|
|
|
|
|
|
|
|
|
|
public const string CmdIgnoreFailedSourcesOptionDescription = "Treat package source failures as warnings.";
|
|
|
|
|
|
2017-05-09 21:05:09 -07:00
|
|
|
|
public const string CmdNoDependenciesOptionDescription = "Set this flag to ignore project to project references and only restore the root project.";
|
2016-11-19 11:45:46 -08:00
|
|
|
|
}
|
|
|
|
|
}
|