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

39 lines
1.8 KiB
C#
Raw Normal View History

namespace Microsoft.DotNet.Tools.Build
{
internal class LocalizableStrings
{
public const string AppDescription = "Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.";
public const string AppFullName = ".NET Builder";
2016-12-16 14:47:27 -08:00
public const string ConfigurationOptionDescription = "Configuration to use for building the project. Default is \"Debug\".";
public const string ConfigurationOptionName = "CONFIGURATION";
public const string FrameworkOptionDescription = "Target framework to build for. The target framework has to be specified in the project file.";
public const string FrameworkOptionName = "FRAMEWORK";
public const string NoDependenciesOptionDescription = "Set this flag to ignore project to project references and only build the root project";
public const string NoIncrementialOptionDescription = "Disables incremental build.";
public const string OutputOptionDescription = "Output directory in which to place built artifacts.";
public const string OutputOptionName = "OUTPUT_DIR";
public const string ProjectArgumentDescription = "The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.";
public const string ProjectArgumentValueName = "PROJECT";
public const string RuntimeOptionDescription = "Target runtime to build for. The default is to build a portable application.";
public const string RuntimeOptionName = "RUNTIME_IDENTIFIER";
public const string VersionSuffixOptionDescription = "Defines the value for the $(VersionSuffix) property in the project";
public const string VersionSuffixOptionName = "VERSION_SUFFIX";
}
}