2016-12-01 13:19:34 -08:00
namespace Microsoft.DotNet.Tools.Pack
{
internal class LocalizableStrings
{
2016-12-15 23:11:18 -08:00
public const string AppFullName = ".NET Core NuGet Package Packer" ;
2016-12-01 13:19:34 -08:00
public const string AppDescription = "pack for msbuild" ;
public const string CmdOutputDir = "OUTPUT_DIR" ;
2016-12-15 23:11:18 -08:00
public const string CmdOutputDirDescription = "Directory in which to place built packages." ;
2016-12-01 13:19:34 -08:00
2016-12-15 23:11:18 -08:00
public const string CmdNoBuildOptionDescription = "Skip building the project prior to packing. By default, the project will be built." ;
2016-12-01 13:19:34 -08:00
2016-12-15 23:11:18 -08:00
public const string CmdIncludeSymbolsDescription = "Include packages with symbols in addition to assembly (DLL) packages in output directory." ;
2016-12-01 13:19:34 -08:00
public const string CmdIncludeSourceDescription = "Include PDBs and source files. Source files go into the src folder in the resulting nuget package" ;
public const string CmdConfig = "CONFIGURATION" ;
2016-12-15 23:11:18 -08:00
public const string CmdConfigDescription = "Configuration to use for building the project. Default is \"Debug\"." ;
2016-12-01 13:19:34 -08:00
public const string CmdVersionSuffix = "VERSION_SUFFIX" ;
2016-12-15 23:11:18 -08:00
public const string CmdVersionSuffixDescription = "Defines the value for the $(VersionSuffix) property in the project." ;
2016-12-01 13:19:34 -08:00
2016-12-15 23:11:18 -08:00
public const string CmdServiceableDescription = "Set the serviceable flag in the package. For more information, please see https://aka.ms/nupkgservicing." ;
2016-12-01 13:19:34 -08:00
public const string CmdArgumentProject = "PROJECT" ;
public const string CmdArgumentDescription = "The project to pack, defaults to the project file in the current directory. Can be a path to any project file" ;
}
}