Updated wrong localizableStrings reference

This commit is contained in:
Scott Carlton 2016-12-05 10:58:47 -08:00 committed by GitHub
parent 65a3d0e500
commit 464f2d9a6c

View file

@ -33,7 +33,7 @@ namespace Microsoft.DotNet.Tools.New
// Check if project.json exists in the folder
if (File.Exists(Path.Combine(Directory.GetCurrentDirectory(), "project.json")) && !isMsBuild)
{
Reporter.Error.WriteLine(string.Format(LocalizableStrings.CreatingNewError,languageName));
Reporter.Error.WriteLine(string.Format(LocalizableStrings.ProjectExistsError, languageName));
return 1;
}