Fixing an errant semicolon
This commit is contained in:
parent
af56e969f9
commit
ad3ee1dbb9
2 changed files with 1 additions and 8 deletions
|
@ -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";
|
||||
|
|
|
@ -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.";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue