From ad3ee1dbb9545915b8ed6c69fa6b56081387ea82 Mon Sep 17 00:00:00 2001 From: Zlatko Knezevic Date: Thu, 5 Jan 2017 17:25:46 -0800 Subject: [PATCH] Fixing an errant semicolon --- src/dotnet/CommonLocalizableStrings.cs | 2 +- src/dotnet/commands/dotnet-sln/LocalizableStrings.cs | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/src/dotnet/CommonLocalizableStrings.cs b/src/dotnet/CommonLocalizableStrings.cs index 98e2cfb29..191509ab4 100644 --- a/src/dotnet/CommonLocalizableStrings.cs +++ b/src/dotnet/CommonLocalizableStrings.cs @@ -159,7 +159,7 @@ namespace Microsoft.DotNet.Tools public const string ArgumentsProjectDescription = "The project file to operate on. If a file is not specified, the command will search the current directory for one."; public const string ArgumentsSolutionDescription = "Solution file to operate on. If not specified, the command will search the current directory for one."; public const string CmdSlnFile = ""; - public const string CmdProjectFile = "" + public const string CmdProjectFile = ""; /// commands public const string CmdFramework = "FRAMEWORK"; diff --git a/src/dotnet/commands/dotnet-sln/LocalizableStrings.cs b/src/dotnet/commands/dotnet-sln/LocalizableStrings.cs index 5be445925..29cdf7ec3 100644 --- a/src/dotnet/commands/dotnet-sln/LocalizableStrings.cs +++ b/src/dotnet/commands/dotnet-sln/LocalizableStrings.cs @@ -23,12 +23,5 @@ namespace Microsoft.DotNet.Tools.Sln public const string CreateAppFullName = ".NET Create a solution file Command"; public const string CreateSubcommandHelpText = "Create a solution file."; - public const string MultipleSlnFilesError = "The current directory contains more than one solution file. Please specify the solution file to use."; - - public const string ProjectFileNotFoundError = "The specified project {0} was not found."; - - public const string SolutionFileNotFoundError = "The specified solution file {0} was not found."; - - public const string NoSolutionFileError = "The current directory does not contain a solution file. Please specify a solution file to use."; } }