Skip to content

Commit 07cc13e

Browse files
Merging changes synced from https://github.com/MicrosoftDocs/bot-docs-pr (branch live)
2 parents 17e0153 + 4139ef7 commit 07cc13e

File tree

6 files changed

+11
-20
lines changed

6 files changed

+11
-20
lines changed

articles/bot-builder-deploy-az-cli.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,9 @@ You can use the msbot tool to generate a new secret and encrypt the .bot file be
129129
msbot secret --bot <name-of-bot-file> --new
130130
```
131131

132+
> [!TIP]
133+
> In the file properties for your .bot file, inside Visual Studio, make sure the **Copy to Output Directory** is set to *Copy always*.
134+
132135
### Setup a repository
133136

134137
To support continuous deployment, create a git repository using your favorite git source control provider. Commit your code into the repository.

articles/bot-service-channels-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Event.* | :white_large_square: | :white_check_mark: | :white_
6666
Event.CreateConversation | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square:
6767
Event.ContinueConversation | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square: | :white_large_square:
6868

69-
- Event Activities are an extensibility mechanism in Direct Line (_aka Direct Line_).
69+
- Event Activities are an extensibility mechanism in Direct Line (_aka Web Chat_).
7070
- An application that owns both the client and server may chose to tunnel their own events through the service using this Event Activity.
7171

7272

@@ -80,7 +80,7 @@ Invoke.ComposeResponse | :x: | :x: | :x: | :x: | :x: |
8080

8181
- Along with a number of the other typed Activities, Microsoft Teams defines a few Teams specific Invoke Activities.
8282
- Invoke Activities are specific to an application and not something a client would define.
83-
- There is no general notion of Invoke only specific subtypes of the Activity.
83+
- There is no general notion of Invoke specific subtypes of the activity.
8484
- Invoke is currently the only Activity that triggers a request-reply behavior on the bot.
8585

8686
This is very important: if using Dialogs for the OAuth Prompt to work the Invoke.TeamsVerification Activity must be forwarded to the Dialog.

articles/dotnet/bot-builder-dotnet-middleware.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ manager: kamrani
77
ms.topic: article
88
ms.service: bot-service
99
ms.subservice: sdk
10-
ms.date: 12/13/2017
10+
ms.date: 03/01/2019
1111
monikerRange: 'azure-bot-service-3.0'
1212
---
1313
# Intercept messages
@@ -57,9 +57,9 @@ Although this example simply prints some information about each message, you can
5757

5858
## Sample code
5959

60-
For a complete sample that shows how to intercept and log messages using the Bot Framework SDK for .NET, see the <a href="https://github.com/Microsoft/BotBuilder-Samples/tree/master/CSharp/core-Middleware" target="_blank">Middleware sample</a> in GitHub.
60+
For a complete sample that shows how to intercept and log messages using the Bot Framework SDK for .NET, see the <a href="https://github.com/Microsoft/BotBuilder-Samples/tree/v3-sdk-samples/CSharp/core-Middleware" target="_blank">Middleware sample</a> in GitHub.
6161

6262
## Additional resources
6363

6464
- <a href="/dotnet/api/?view=botbuilder-3.11.0" target="_blank">Bot Framework SDK for .NET Reference</a>
65-
- <a href="https://github.com/Microsoft/BotBuilder-Samples/tree/master/CSharp/core-Middleware" target="_blank">Middleware sample (GitHub)</a>
65+
- <a href="https://github.com/Microsoft/BotBuilder-Samples/tree/v3-sdk-samples/CSharp/core-Middleware" target="_blank">Middleware sample (GitHub)</a>

articles/v4sdk/bot-builder-concept-state.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ These state properties are lumped into scoped "buckets", which are just collecti
5252

5353
All of these buckets are subclasses of the *bot state* class, which can be derived to define other types of buckets with different scopes.
5454

55-
These predifined buckets are scoped to a certain visibility, depending on the bucket:
55+
These predefined buckets are scoped to a certain visibility, depending on the bucket:
5656

5757
- User state is available in any turn that the bot is conversing with that user on that channel, regardless of the conversation
5858
- Conversation state is available in any turn in a specific conversation, regardless of user (i.e. group conversations)

articles/v4sdk/bot-builder-howto-v4-storage.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -153,18 +153,6 @@ public async Task OnTurnAsync(ITurnContext turnContext, CancellationToken cancel
153153
const { BotFrameworkAdapter, ConversationState, MemoryStorage } = require('botbuilder');
154154
const restify = require('restify');
155155

156-
// Create server.
157-
// let server = restify.createServer();
158-
// server.listen(process.env.port || process.env.PORT || 3978, function () {
159-
// console.log(`${server.name} listening to ${server.url}`);
160-
// });
161-
162-
// Create adapter.
163-
// const adapter = new BotFrameworkAdapter({
164-
// appId: process.env.MICROSOFT_APP_ID,
165-
// appPassword: process.env.MICROSOFT_APP_PASSWORD
166-
// });
167-
168156
// Add memory storage.
169157
var storage = new MemoryStorage();
170158

articles/v4sdk/bot-file-basics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: kamrani
88
ms.topic: article
99
ms.service: bot-service
1010
ms.subservice: sdk
11-
ms.date: 11/23/2018
11+
ms.date: 03/11/2018
1212
monikerRange: 'azure-bot-service-4.0'
1313
---
1414

@@ -25,7 +25,7 @@ With a .bot file, you can register services like:
2525
* [**Azure Bot Service**](https://azure.microsoft.com/en-us/services/bot-service/) Azure Bot Service registrations.
2626
* [**LUIS.AI**](https://www.luis.ai/) LUIS gives your bot the ability to communicate with people using natural language..
2727
* [**QnA Maker**](https://qnamaker.ai/) Build, train and publish a simple question and answer bot based on FAQ URLs, structured documents or editorial content in minutes.
28-
* [**Dispatch**](https://github.com/Microsoft/botbuilder-tools/tree/master/Dispatch) models for dispatching across multiple services.
28+
* [**Dispatch**](https://github.com/Microsoft/botbuilder-tools/tree/master/packages/Dispatch) models for dispatching across multiple services.
2929
* [**Azure Application Insights**](https://azure.microsoft.com/en-us/services/application-insights/) for insights and bot analytics.
3030
* [**Azure Blob Storage**](https://azure.microsoft.com/en-us/services/storage/blobs/) for bot state persistence.
3131
* [**Azure Cosmos DB**](https://azure.microsoft.com/en-us/services/cosmos-db/) - globally distributed, multi-model database service to persist bot state.

0 commit comments

Comments
 (0)