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.Clean
|
2016-12-01 11:20:44 -08:00
|
|
|
|
{
|
|
|
|
|
internal class LocalizableStrings
|
|
|
|
|
{
|
|
|
|
|
public const string AppFullName = ".NET Clean Command";
|
|
|
|
|
|
|
|
|
|
public const string AppDescription = "Command to clean previously generated build outputs.";
|
|
|
|
|
|
|
|
|
|
public const string CmdOutputDir = "OUTPUT_DIR";
|
|
|
|
|
|
2016-12-15 23:11:18 -08:00
|
|
|
|
public const string CmdOutputDirDescription = "Directory in which the build outputs have been placed.";
|
2016-12-01 11:20:44 -08:00
|
|
|
|
}
|
|
|
|
|
}
|