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.Publish
|
2016-11-30 09:04:04 -08:00
|
|
|
|
{
|
|
|
|
|
internal class LocalizableStrings
|
|
|
|
|
{
|
|
|
|
|
public const string AppFullName = ".NET Publisher";
|
|
|
|
|
|
|
|
|
|
public const string AppDescription = "Publisher for the .NET Platform";
|
|
|
|
|
|
|
|
|
|
public const string FrameworkOption = "FRAMEWORK";
|
|
|
|
|
|
2016-12-16 15:50:18 -08:00
|
|
|
|
public const string FrameworkOptionDescription = "Target framework to publish for. The target framework has to be specified in the project file.";
|
2016-11-30 09:04:04 -08:00
|
|
|
|
|
|
|
|
|
public const string OutputOption = "OUTPUT_DIR";
|
|
|
|
|
|
2016-12-15 23:11:18 -08:00
|
|
|
|
public const string OutputOptionDescription = "Output directory in which to place the published artifacts.";
|
2016-11-30 09:04:04 -08:00
|
|
|
|
|
2017-01-25 18:57:14 -08:00
|
|
|
|
public const string FilterProjOption = "profile.xml";
|
|
|
|
|
|
|
|
|
|
public const string FilterProjOptionDescription = "The XML file that contains the list of packages to be excluded from publish step.";
|
2016-11-30 09:04:04 -08:00
|
|
|
|
}
|
|
|
|
|
}
|