From 464f2d9a6cd330f8bfdede0ddd7a4fff01a6cae4 Mon Sep 17 00:00:00 2001 From: Scott Carlton Date: Mon, 5 Dec 2016 10:58:47 -0800 Subject: [PATCH] Updated wrong localizableStrings reference --- src/dotnet/commands/dotnet-new/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dotnet/commands/dotnet-new/Program.cs b/src/dotnet/commands/dotnet-new/Program.cs index 7153dc40b..2595dc7a8 100644 --- a/src/dotnet/commands/dotnet-new/Program.cs +++ b/src/dotnet/commands/dotnet-new/Program.cs @@ -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; }