This commit is contained in:
Chris McConnell 2016-03-26 12:58:26 -07:00
Родитель 26647fb97b
Коммит ca0d08c612
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -32,8 +32,8 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.9.0.21")]
[assembly: AssemblyFileVersion("0.9.0.21")]
[assembly: AssemblyVersion("0.9.0.22")]
[assembly: AssemblyFileVersion("0.9.0.22")]
[assembly: InternalsVisibleTo("Microsoft.Bot.Builder.Tests")]

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

@ -40,7 +40,7 @@ namespace Microsoft.Bot.Sample.SimpleEchoBot
if (message.Type == "Message")
{
// return our reply to the user
return await CompositionRoot.SendAsync(message, () => new EchoDialog());
return await Conversation.SendAsync(message, () => new EchoDialog());
}
else
{