From 4787b4929cc4cd9d18a3ca540292ff6f94293fa0 Mon Sep 17 00:00:00 2001 From: Emilio Munoz Date: Tue, 19 Nov 2019 09:48:51 -0800 Subject: [PATCH] Switch deprecation message to Console.WriteLine --- packages/LUISGen/src/Program.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/LUISGen/src/Program.cs b/packages/LUISGen/src/Program.cs index 930489ef..ccd1799e 100644 --- a/packages/LUISGen/src/Program.cs +++ b/packages/LUISGen/src/Program.cs @@ -72,13 +72,13 @@ namespace LUISGen public static void Main(string[] args) { - Console.Error.WriteLine("\n\n---------------------------------------------------------- -\n"); - Console.Error.WriteLine(" NOTICE:\n"); - Console.Error.WriteLine(" This tool has been deprecated.\n"); - Console.Error.WriteLine(" All functionality was ported over to the new BF CLI.\n"); - Console.Error.WriteLine(" To learn more visit "); - Console.Error.WriteLine("https://aka.ms/NewBFCLI\n"); - Console.Error.WriteLine("-----------------------------------------------------------\n\n"); + Console.WriteLine("\n\n---------------------------------------------------------- -\n"); + Console.WriteLine(" NOTICE:\n"); + Console.WriteLine(" This tool has been deprecated.\n"); + Console.WriteLine(" All functionality was ported over to the new BF CLI.\n"); + Console.WriteLine(" To learn more visit "); + Console.WriteLine("https://aka.ms/NewBFCLI\n"); + Console.WriteLine("-----------------------------------------------------------\n\n"); string path = null; string outPath = null; string outType = null;