dotnet-installer/src/dotnet/commands/dotnet-add/dotnet-add-package/LocalizableStrings.cs

39 lines
1.6 KiB
C#
Raw Normal View History

2016-12-20 14:23:11 -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.Add.PackageReference
{
internal class LocalizableStrings
{
public const string AppFullName = ".NET Add Package reference Command";
public const string AppDescription = "Command to add package reference";
2017-03-19 17:09:05 -07:00
public const string CmdPackageDescription = "The package reference to add.";
2016-12-20 14:23:11 -08:00
2016-12-22 15:29:29 -08:00
public const string SpecifyExactlyOnePackageReference = "Please specify one package reference to add.";
2017-03-19 17:09:05 -07:00
public const string CmdFrameworkDescription = "Adds reference only when targeting a specific framework.";
2016-12-20 14:23:11 -08:00
2017-03-19 17:09:05 -07:00
public const string CmdNoRestoreDescription = "Adds reference without performing restore preview and compatibility check.";
2016-12-20 14:23:11 -08:00
2017-03-19 17:09:05 -07:00
public const string CmdSourceDescription = "Specifies NuGet package sources to use during the restore.";
2016-12-20 14:23:11 -08:00
2017-03-19 17:09:05 -07:00
public const string CmdPackageDirectoryDescription = "Restores the packages to the specified directory.";
2016-12-20 16:25:18 -08:00
public const string CmdVersionDescription = "Version for the package to be added.";
2017-03-19 17:09:05 -07:00
public const string CmdDGFileException = "Unable to create dependency graph file for project '{0}'. Cannot add package reference.";
2016-12-21 11:44:45 -08:00
public const string CmdPackage = "PACKAGE_NAME";
2016-12-21 11:44:45 -08:00
public const string CmdVersion = "VERSION";
public const string CmdFramework = "FRAMEWORK";
public const string CmdSource = "SOURCE";
public const string CmdPackageDirectory = "PACKAGE_DIRECTORY";
2016-12-20 14:23:11 -08:00
}
}