2016-12-04 21:33:43 -08:00
namespace Microsoft.DotNet.Tools.Remove.ProjectToProjectReference
{
internal class LocalizableStrings
{
2016-12-05 02:57:30 -08:00
public const string AppFullName = ".NET Remove Project to Project (p2p) reference Command" ;
public const string AppDescription = "Command to remove project to project (p2p) reference" ;
2016-12-13 14:31:35 -10:00
public const string AppHelpText = "Project to project references to remove" ;
2016-12-05 02:57:30 -08:00
public const string CmdFrameworkDescription = "Remove reference only when targetting a specific framework" ;
2016-12-04 21:33:43 -08:00
public const string SpecifyAtLeastOneReferenceToRemove = "You must specify at least one reference to delete. Please run dotnet delete --help for more information." ;
}
2016-12-05 02:57:30 -08:00
}