Merge pull request #1378 from microsoft/munozemilio/deprecation-luisgen

Switch deprecation message to Console.WriteLine
This commit is contained in:
Emilio Munoz 2019-11-19 10:28:49 -08:00 коммит произвёл GitHub
Родитель 0c41dd83ad 4787b4929c
Коммит 4b1f3adeb9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 7 удалений

Просмотреть файл

@ -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;