From 7e59476b5c5de8701d35b75acdb38257c10fdf7f Mon Sep 17 00:00:00 2001 From: Brandon H Date: Mon, 12 Feb 2018 10:29:01 -0800 Subject: [PATCH] change ContextExtensionMethods namespace MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The ContextExtensions should be in Microsoft.Bot.Builder namespace; in order to use them, users need to see them. They don't see them if they have to import a completely separate namespace. In JS SDK, this hurdle doesn't exist; shouldn’t in .Net. --- .../ContextExtensions/ContextExtensionMethods.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/Microsoft.Bot.Builder/ContextExtensions/ContextExtensionMethods.cs b/libraries/Microsoft.Bot.Builder/ContextExtensions/ContextExtensionMethods.cs index d221925a55..658734fa52 100644 --- a/libraries/Microsoft.Bot.Builder/ContextExtensions/ContextExtensionMethods.cs +++ b/libraries/Microsoft.Bot.Builder/ContextExtensions/ContextExtensionMethods.cs @@ -3,7 +3,7 @@ using Microsoft.Bot.Schema; -namespace Microsoft.Bot.Builder.ContextExtensions +namespace Microsoft.Bot.Builder { public static class ContextExtensionMethods { @@ -19,4 +19,4 @@ public static IBotContext Delay(this IBotContext context, int duration) return context; } } -} \ No newline at end of file +}