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

23 lines
998 B
C#
Raw Normal View History

// 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.Sln
{
internal class LocalizableStrings
{
2017-01-05 16:44:33 -08:00
public const string AppFullName = ".NET modify solution file command";
2017-01-05 16:58:12 -08:00
public const string AddAppFullName = ".NET Add project(s) to a solution file Command";
2017-01-30 07:39:28 -08:00
public const string AddSubcommandHelpText = "Add one or more specified projects to the solution.";
2017-01-05 16:58:12 -08:00
public const string RemoveAppFullName = ".NET Remove project(s) from a solution file Command";
2017-01-05 16:58:12 -08:00
public const string RemoveSubcommandHelpText = "Remove the specified project(s) from the solution. The project is not impacted.";
2017-01-05 16:44:33 -08:00
public const string ListAppFullName = ".NET List project(s) in a solution file Command";
public const string ListSubcommandHelpText = "List all projects in the solution.";
}
}