Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.

Commit 5e3a59c

Browse files
committed
Merge branch 'next' into feature/southworks/deprecation-plan/merge-master-into-next
2 parents d22a2bb + 3cb7733 commit 5e3a59c

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

samples/csharp/assistants/enterprise-assistant/VirtualAssistantSample/Adapters/DefaultAdapter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Threading;
66
using System.Threading.Tasks;
77
using Microsoft.Bot.Builder;
8-
using Microsoft.Bot.Builder.Azure.Blobs;
8+
using Microsoft.Bot.Builder.Azure;
99
using Microsoft.Bot.Builder.Integration.ApplicationInsights.Core;
1010
using Microsoft.Bot.Builder.Integration.AspNet.Core;
1111
using Microsoft.Bot.Builder.Integration.AspNet.Core.Skills;
@@ -62,7 +62,7 @@ public DefaultAdapter(
6262

6363
// Uncomment the following line for local development without Azure Storage
6464
// Use(new TranscriptLoggerMiddleware(new MemoryTranscriptStore()));
65-
Use(new TranscriptLoggerMiddleware(new BlobsTranscriptStore(settings.BlobStorage.ConnectionString, settings.BlobStorage.Container)));
65+
Use(new TranscriptLoggerMiddleware(new AzureBlobTranscriptStore(settings.BlobStorage.ConnectionString, settings.BlobStorage.Container)));
6666
Use(new ShowTypingMiddleware());
6767
Use(new SetLocaleMiddleware(settings.DefaultLocale ?? "en-us"));
6868
Use(new EventDebuggerMiddleware());

samples/csharp/assistants/hospitality-assistant/VirtualAssistantSample/Adapters/DefaultAdapter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Threading;
66
using System.Threading.Tasks;
77
using Microsoft.Bot.Builder;
8-
using Microsoft.Bot.Builder.Azure.Blobs;
8+
using Microsoft.Bot.Builder.Azure;
99
using Microsoft.Bot.Builder.Integration.ApplicationInsights.Core;
1010
using Microsoft.Bot.Builder.Integration.AspNet.Core;
1111
using Microsoft.Bot.Builder.Integration.AspNet.Core.Skills;
@@ -62,7 +62,7 @@ public DefaultAdapter(
6262

6363
// Uncomment the following line for local development without Azure Storage
6464
// Use(new TranscriptLoggerMiddleware(new MemoryTranscriptStore()));
65-
Use(new TranscriptLoggerMiddleware(new BlobsTranscriptStore(settings.BlobStorage.ConnectionString, settings.BlobStorage.Container)));
65+
Use(new TranscriptLoggerMiddleware(new AzureBlobTranscriptStore(settings.BlobStorage.ConnectionString, settings.BlobStorage.Container)));
6666
Use(new ShowTypingMiddleware());
6767
Use(new SetLocaleMiddleware(settings.DefaultLocale ?? "en-us"));
6868
Use(new EventDebuggerMiddleware());

samples/csharp/assistants/virtual-assistant/VirtualAssistantSample/Adapters/DefaultAdapter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Threading;
66
using System.Threading.Tasks;
77
using Microsoft.Bot.Builder;
8-
using Microsoft.Bot.Builder.Azure.Blobs;
8+
using Microsoft.Bot.Builder.Azure;
99
using Microsoft.Bot.Builder.Integration.ApplicationInsights.Core;
1010
using Microsoft.Bot.Builder.Integration.AspNet.Core;
1111
using Microsoft.Bot.Builder.Integration.AspNet.Core.Skills;
@@ -60,7 +60,7 @@ public DefaultAdapter(
6060

6161
// Uncomment the following line for local development without Azure Storage
6262
// Use(new TranscriptLoggerMiddleware(new MemoryTranscriptStore()));
63-
Use(new TranscriptLoggerMiddleware(new BlobsTranscriptStore(settings.BlobStorage.ConnectionString, settings.BlobStorage.Container)));
63+
Use(new TranscriptLoggerMiddleware(new AzureBlobTranscriptStore(settings.BlobStorage.ConnectionString, settings.BlobStorage.Container)));
6464
Use(new ShowTypingMiddleware());
6565
Use(new SetLocaleMiddleware(settings.DefaultLocale ?? "en-us"));
6666
Use(new EventDebuggerMiddleware());

samples/csharp/skill/SkillSample/Adapters/DefaultAdapter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Threading.Tasks;
66
using Microsoft.Bot.Builder;
7-
using Microsoft.Bot.Builder.Azure.Blobs;
7+
using Microsoft.Bot.Builder.Azure;
88
using Microsoft.Bot.Builder.Integration.ApplicationInsights.Core;
99
using Microsoft.Bot.Builder.Integration.AspNet.Core;
1010
using Microsoft.Bot.Builder.TraceExtensions;
@@ -48,7 +48,7 @@ public DefaultAdapter(
4848

4949
// Uncomment the following line for local development without Azure Storage
5050
// Use(new TranscriptLoggerMiddleware(new MemoryTranscriptStore()));
51-
Use(new TranscriptLoggerMiddleware(new BlobsTranscriptStore(settings.BlobStorage.ConnectionString, settings.BlobStorage.Container)));
51+
Use(new TranscriptLoggerMiddleware(new AzureBlobTranscriptStore(settings.BlobStorage.ConnectionString, settings.BlobStorage.Container)));
5252
Use(new TelemetryLoggerMiddleware(telemetryClient, logPersonalInformation: true));
5353
Use(new ShowTypingMiddleware());
5454
Use(new SetLocaleMiddleware(settings.DefaultLocale ?? "en-us"));

0 commit comments

Comments
 (0)