2017-03-02 21:04:03 -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.Build
|
2016-11-15 17:12:26 -08:00
|
|
|
|
{
|
|
|
|
|
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 15:50:18 -08:00
|
|
|
|
public const string NoDependenciesOptionDescription = "Set this flag to ignore project-to-project references and only build the root project";
|
2016-11-15 17:12:26 -08:00
|
|
|
|
|
2016-12-15 23:11:18 -08:00
|
|
|
|
public const string NoIncrementialOptionDescription = "Disables incremental build.";
|
2016-11-15 17:12:26 -08:00
|
|
|
|
|
2016-12-15 23:11:18 -08:00
|
|
|
|
public const string OutputOptionDescription = "Output directory in which to place built artifacts.";
|
2016-11-15 17:12:26 -08:00
|
|
|
|
|
|
|
|
|
public const string OutputOptionName = "OUTPUT_DIR";
|
|
|
|
|
}
|
|
|
|
|
}
|