// 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 { public const string AppFullName = ".NET modify solution file command"; public const string AppDescription = "Command to add, remove, and list projects from the solution (SLN) file."; public const string AppHelpText = "Projects to add or to remove from the solution."; public const string AddAppFullName = ".NET Add project(s) to a solution file Command"; public const string AddSubcommandHelpText = "Add a specified project(s) to the solution."; public const string RemoveAppFullName = ".NET Remove project(s) from a solution file Command"; public const string RemoveSubcommandHelpText = "Remove the specified project(s) from the solution. The project is not impacted."; public const string ListAppFullName = ".NET List project(s) in a solution file Command"; public const string ListSubcommandHelpText = "List all projects in the solution."; public const string CreateAppFullName = ".NET Create a solution file Command"; public const string CreateSubcommandHelpText = "Create a solution file."; } }