Fixing an errant semicolon

This commit is contained in:
Zlatko Knezevic 2017-01-05 17:25:46 -08:00
parent af56e969f9
commit ad3ee1dbb9
2 changed files with 1 additions and 8 deletions

View file

@ -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 = "<SLN_FILE>";
public const string CmdProjectFile = "<PROJECT>"
public const string CmdProjectFile = "<PROJECT>";
/// commands
public const string CmdFramework = "FRAMEWORK";

View file

@ -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.";
}
}