34 lines
1.4 KiB
C#
34 lines
1.4 KiB
C#
![]() |
namespace Microsoft.DotNet.Tools.Restore
|
|||
|
{
|
|||
|
internal class LocalizableStrings
|
|||
|
{
|
|||
|
public const string AppFullName = "restore";
|
|||
|
|
|||
|
public const string AppDescription = "restore for msbuild";
|
|||
|
|
|||
|
public const string CmdArgument = "root";
|
|||
|
|
|||
|
public const string CmdArgumentDescription = "Optional path to a project file or MSBuild arguments.";
|
|||
|
|
|||
|
public const string CmdSourceOption = "source";
|
|||
|
|
|||
|
public const string CmdSourceOptionDescription = "Specifies a NuGet package source to use during the restore.";
|
|||
|
|
|||
|
public const string CmdPackagesOption = "packagesDirectory";
|
|||
|
|
|||
|
public const string CmdPackagesOptionDescription = "Directory to install packages in.";
|
|||
|
|
|||
|
public const string CmdDisableParallelOptionDescription = "Disables restoring multiple projects in parallel.";
|
|||
|
|
|||
|
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";
|
|||
|
}
|
|||
|
}
|