dotnet-installer/src/dotnet/commands/dotnet-restore/LocalizableStrings.cs

38 lines
1.5 KiB
C#
Raw Normal View History

namespace Microsoft.DotNet.Tools.Restore
{
internal class LocalizableStrings
{
public const string AppFullName = ".NET dependency restorer";
public const string AppDescription = "restore for msbuild";
2016-12-16 14:47:27 -08:00
public const string CmdArgument = "PROJECT";
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";
public const string CmdSourceOptionDescription = "Specifies a NuGet package source to use during the restore.";
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";
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";
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.";
public const string CmdNoDependenciesOptionDescription = "Set this flag to ignore project to project references and only restore the root project";
}
}