This repository was archived by the owner on Jun 30, 2022. It is now read-only.
File tree Expand file tree Collapse file tree
enterprise-assistant/VirtualAssistantSample/Adapters
hospitality-assistant/VirtualAssistantSample/Adapters
virtual-assistant/VirtualAssistantSample/Adapters
skill/SkillSample/Adapters Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55using System . Threading ;
66using System . Threading . Tasks ;
77using Microsoft . Bot . Builder ;
8- using Microsoft . Bot . Builder . Azure . Blobs ;
8+ using Microsoft . Bot . Builder . Azure ;
99using Microsoft . Bot . Builder . Integration . ApplicationInsights . Core ;
1010using Microsoft . Bot . Builder . Integration . AspNet . Core ;
1111using 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 ( ) ) ;
Original file line number Diff line number Diff line change 55using System . Threading ;
66using System . Threading . Tasks ;
77using Microsoft . Bot . Builder ;
8- using Microsoft . Bot . Builder . Azure . Blobs ;
8+ using Microsoft . Bot . Builder . Azure ;
99using Microsoft . Bot . Builder . Integration . ApplicationInsights . Core ;
1010using Microsoft . Bot . Builder . Integration . AspNet . Core ;
1111using 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 ( ) ) ;
Original file line number Diff line number Diff line change 55using System . Threading ;
66using System . Threading . Tasks ;
77using Microsoft . Bot . Builder ;
8- using Microsoft . Bot . Builder . Azure . Blobs ;
8+ using Microsoft . Bot . Builder . Azure ;
99using Microsoft . Bot . Builder . Integration . ApplicationInsights . Core ;
1010using Microsoft . Bot . Builder . Integration . AspNet . Core ;
1111using 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 ( ) ) ;
Original file line number Diff line number Diff line change 44using System ;
55using System . Threading . Tasks ;
66using Microsoft . Bot . Builder ;
7- using Microsoft . Bot . Builder . Azure . Blobs ;
7+ using Microsoft . Bot . Builder . Azure ;
88using Microsoft . Bot . Builder . Integration . ApplicationInsights . Core ;
99using Microsoft . Bot . Builder . Integration . AspNet . Core ;
1010using 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" ) ) ;
You can’t perform that action at this time.
0 commit comments