Skip to content

Conversation

@sbohlen
Copy link
Contributor

@sbohlen sbohlen commented Sep 16, 2017

No description provided.

@msftclas
Copy link

@sbohlen,
Thanks for your contribution as a Microsoft full-time employee or intern. You do not need to sign a CLA.
Thanks,
Microsoft Pull Request Bot

Copy link
Contributor

@v-ducvo v-ducvo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am rejecting this change because using "!=" operator does not make sense in this context. Because the message is sent to the current bot's address (i.e.: .address(message.address)), using the "!=" will send the "Goodbye" message to the current bot for every bot that's in the array. I don't think that is the intended behavior.

As it is written, the "Goodbye" message is only sent to the current bot if it is found in the ".membersRemoved" array. Otherwise, no "Goodbye" message is sent.

If we want to handle a case where multiple bots are removed from a conversation and a "Goodbye" message is sent to each, then we need to write a new sample code to illustrate this point.

As it stands, the current code sample is valid.

@sbohlen
Copy link
Contributor Author

sbohlen commented Sep 21, 2017

I think I must be misunderstanding the intent of the equality test (?)

The event this code responds to is raised whenever any participant in the conversation is added or removed (whether the bot or an actual user/human participant). My interpretation of the purpose of the if(...) tests in both the ADD and REMOVE code paths was to ensure that the message is only sent if the participant being added/removed is not the bot but is instead an actual user/person.

This seemed the intent of the equality tests in the earlier block of code that handles the ADD case:

if (message.membersAdded[i].id != botId) {
//...

By using the inverse test for the REMOVE event as in ...

if (message.membersRemoved[i].id === botId) {
//...

...my read of the behavior you will get is that the 'goodbye' message will only be sent if the bot is the one leaving the conversation. Am I wrong that the intent of this snippet was to show how to send the 'goodbye' to the user/person that leaves a conversation? And/or am I misreading how this code will behave?

I admit up front that I've not run it IRL, but am doing this entirely from just reading the code, but the way I read this you will end up with a case where the ADD will be sent to the user but the REMOVE will only be sent to the bot.

Thoughts/corrections to my understanding welcome here; entirely poss. I'm missing something in my interpretation .... !

@v-ducvo
Copy link
Contributor

v-ducvo commented Sep 21, 2017

Hi Steve,

Could you point me to the page where you found this if(...) block for ADD case?

if (message.membersAdded[i].id != botId) {

I can't seem to find where that statement was used in this topic or in any of our content topics.

Like you, I inherited this content so I can't say for sure what the initial or actual intent is. You did bring up a good point about members being "user" or "bot". I interpret them as being the same but you seems to make a distinction. I will get with the engineers to see if I can understand this distinction better and see if it makes a difference in this case.

@sbohlen
Copy link
Contributor Author

sbohlen commented Sep 21, 2017

Apologies -- I'm confusing this sample code with different code I wrote in another project (that DOES also handle the ADD event). Sorry about that :P.

Discount my invalid reference :) but I think I still stand by my understanding: the check for == on remove will seemingly only send the message to the bot and never the user as I understand it. I'd also be interested to understand the response from the product team on this snippet.

@v-ducvo
Copy link
Contributor

v-ducvo commented Sep 21, 2017

Hi Steve,

So, I did a quick sync with one of the engineer regarding the array content. SteveIckman told me that the array actually contains both user and bot who are added or removed from a conversation. But, not always. It all depends on how the channel chooses to handle these event updates.

That said, I can see where you might get the idea that the message should be sent to a "user" instead of a bot...the intro text to the sample code references "user" while the code sample is looking for the current "bot".

I understand this scenario better now. I will go in and update the content text to match with what the code is trying to do. I'd appreciate it if you could help review that content to make sure the information is presented in a clear and concise manner.

@sbohlen
Copy link
Contributor Author

sbohlen commented Sep 21, 2017 via email

@RobStand
Copy link
Contributor

Merging in to be edited and synced.

@RobStand RobStand merged commit f4d2103 into MicrosoftDocs:live Sep 21, 2017
openpublishbuild pushed a commit that referenced this pull request Oct 11, 2017
* Fixing orphaned article

* proper capitalization (#341)

* ordering of app id and password step changed to last. (#340)

* Community content (#344)

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* ISO 639-2 recommends use of the language codes in lower case (#175)

* Grammar correction. Whose, not Who's (#33)

* Updated to correct version of IISExpress (#35)

* Update resources-tools-downloads.md (#31)

* Update resources-tools-downloads.md

Add information for how to install the Visual Studio project templates.

* Update resources-tools-downloads.md

* Changed AttachmentLayouts to AttachmentLayoutTypes (#38)

The types of Attachment Layouts class is called AttachmentLayoutTypes and not AttachmentLayouts.
https://docs.botframework.com/en-us/csharp/builder/sdkreference/d7/d87/class_microsoft_1_1_bot_1_1_connector_1_1_attachment_layout_types.html

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Dialog next steps (#177)

* Added clarification for ListStyle in Prompts.choice

* Minor copy edits.

* Add reference to Manage state data topic.

* Saving progress...

* Bind actions to dialog

* Types table link to section instead.

* Confirm interruptions

* Added some more details and made some minor edits.

* Update links to reflect new file name for the 'Handle user actions' topic.

* Fix broken link.

* minor edits to the Actions topic and cross linking.

* fixed broken link

* Redirecting to the new topic.

* Revised content ready for review.

* fix broken links.

* Fixed Action node to live under Dialog.

* Edit based on revision comments.

* Fix broken link to "Action precedence" section.

* Dialog Overview - edited based on review feedback.

* Added a "Next step" section to each topics.

* Reorder Dialog TOC topics

* with revisions from paper notes

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Added Next step and move Dialogs before Messages in the TOC.

* Update referece to te persistCoversatioData flag...it's enabled by default.

* Clarify reference to global actions and added new section for customAction to the topic.

* Updated Next step to use button instead of link.

* Remove "Null response" section based on SteveIckman feedback.

* Update section to say "Next steps" for consistencies.

* Removing extraneous Additional Resources section

* Subscribe to bot events, always show bot online (#189)

Slack doc update

* Changing author alias (#193)

* links to best current samples, User Story 17067 (#185)

Fixed sample references.

* Second effort for PR181 (#187)

Next Steps and Requirement about .NET 4.6

* Groupme screencaps (#191)

GroupMe screen changes.

* Fixed broken anchor links from table to section in topic. (#195)

* Adding NoIndex, NoFollow to metadata (#196)

* Removing broken video

* Update bot-builder-nodejs-cortana-skill.md

Fixed bug reported by PM. Removed "Sign In Card" for Cortana channel link due to a security bug that we recently discovered.

* added dotnet scorable dialogs (#180)

* added dotnet scorable dialogs

* edited links, fixed typos to scorables article

* added date/title/header, grammar change

* Updated bot-builder-dotnet-scorable-dialogs.md

* Update filenames.md

* Added entries about the documentation (#206)

* Slack review (#204)

* Scorable review (#203)

* Resolve syncing conflicts from live-sync-work to live (#39)

* Release 07-07-2017 (#176)

* ISO 639-2 recommends use of the language codes in lower case (#175)

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Release 07-14-2017 (#184)

* Conversation designer (#178)

* Conversation Designer going live (#188)

* convert external Twilio links to HTML style target="_blank" to open in new tab.

* Secure bot reminder and ngrok command.

If you're debugging through Cortana, then the Microsoft App credentials need to specified in both the Bot Framework portal and the Web.config file. I also found that bots always ran on port 3979. And lastly, unless I specified the host header the requests would fail with 400.

* convert external links to open in new tab

* update external links to open in new tab

* Update bot-builder-nodejs-global-handlers.md

Added missing comma's in the examples of trigger actions

* Fixing link

* Revert "Merging upstream into public"

This reverts commit ed2438b, reversing
changes made to f4200df.

* Dotnet form flow updates (#161)

* Updated .NET FormFlow articles to add links to sample code on GitHub.

* Fixed broken link.

* Updated .NET FormFlow articles to move Sample code section.

* Fixed broken link.

* Update IActivity.xml

* Update IActivity.xml

Fixing indentation.

* Updating summary for ChannelData

* Updating IActivity docs with ChannelData remarks

* bugfix: domain parameter and log=false for compliance (#164)

* fix bug - domain parameter

* section link, class definition

* document log=off for privacy compliance

* fix heading

* Change .NET Framework target version (#166)

* Adding DirectLine to REST card (#167)

* Typo fix

* Removing location control from hub

* little fixes (#169)

Add an optional extended description…

* clicking on a speech bubble reveals the JSON data underlying the message. (#171)

* Microsoft.Bot.Builder template requires IIS Express; added download link. (#170)

* The Microsoft.Bot.Builder template requires IIS Express, so now there's a link where you can download it.

* occasional requirement: IIS Express download, a bit hard to find this link so now it's noted near the place where it's (occasionally) needed.

* section: dialog-based proactive message - fix broken sample code & link to botadaptor.js file

* add back comment with note about session.userData

* fix typo

* Anchor links (#173)

* Promoting questions to H2s for anchor links

* Updating title and H1

* Fixing outdated anchor links

* VS Community isn't supported by the template

* Update dos-and-donts.md

* Update style-and-voice.md

* Update style-and-voice.md

* Fixing link to botadapter.js

* section: dialog-based proactive message - fix broken sample code & link to botadaptor.js file

* add back comment with note about session.userData

* fix typo

* ISO 639-2 recommends use of the language codes in lower case (#175)

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Dialog next steps (#177)

* Added clarification for ListStyle in Prompts.choice

* Minor copy edits.

* Add reference to Manage state data topic.

* Saving progress...

* Bind actions to dialog

* Types table link to section instead.

* Confirm interruptions

* Added some more details and made some minor edits.

* Update links to reflect new file name for the 'Handle user actions' topic.

* Fix broken link.

* minor edits to the Actions topic and cross linking.

* fixed broken link

* Redirecting to the new topic.

* Revised content ready for review.

* fix broken links.

* Fixed Action node to live under Dialog.

* Edit based on revision comments.

* Fix broken link to "Action precedence" section.

* Dialog Overview - edited based on review feedback.

* Added a "Next step" section to each topics.

* Reorder Dialog TOC topics

* with revisions from paper notes

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Added Next step and move Dialogs before Messages in the TOC.

* Update referece to te persistCoversatioData flag...it's enabled by default.

* Clarify reference to global actions and added new section for customAction to the topic.

* Updated Next step to use button instead of link.

* Remove "Null response" section based on SteveIckman feedback.

* Update section to say "Next steps" for consistencies.

* Removing extraneous Additional Resources section

* Release 7-20-2017

* Added clarification for ListStyle in Prompts.choice

* Minor copy edits.

* Add reference to Manage state data topic.

* Saving progress...

* Bind actions to dialog

* Types table link to section instead.

* Confirm interruptions

* Added some more details and made some minor edits.

* Update links to reflect new file name for the 'Handle user actions' topic.

* Fix broken link.

* minor edits to the Actions topic and cross linking.

* fixed broken link

* Redirecting to the new topic.

* Revised content ready for review.

* fix broken links.

* Fixed Action node to live under Dialog.

* Edit based on revision comments.

* Fix broken link to "Action precedence" section.

* Dialog Overview - edited based on review feedback.

* Added a "Next step" section to each topics.

* Reorder Dialog TOC topics

* with revisions from paper notes

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Added Next step and move Dialogs before Messages in the TOC.

* Update referece to te persistCoversatioData flag...it's enabled by default.

* Clarify reference to global actions and added new section for customAction to the topic.

* Updated Next step to use button instead of link.

* Remove "Null response" section based on SteveIckman feedback.

* Update section to say "Next steps" for consistencies.

* Removing extraneous Additional Resources section

* Subscribe to bot events, always show bot online (#189)

Slack doc update

* Changing author alias (#193)

* links to best current samples, User Story 17067 (#185)

Fixed sample references.

* Second effort for PR181 (#187)

Next Steps and Requirement about .NET 4.6

* Groupme screencaps (#191)

GroupMe screen changes.

* Updates to Slack, GroupMe, sample links, next steps (#194)

* Fixed broken anchor links from table to section in topic. (#195)

* Adding NoIndex, NoFollow to metadata (#196)

* Release 7-24-2017 (#197)

* Removing broken video

* Update bot-builder-nodejs-cortana-skill.md

Fixed bug reported by PM. Removed "Sign In Card" for Cortana channel link due to a security bug that we recently discovered.

* Update bot-builder-nodejs-cortana-skill.md (#198)

Fixed bug reported by PM. Removed "Sign In Card" for Cortana channel link due to a security bug that we recently discovered.

* added dotnet scorable dialogs (#180)

* added dotnet scorable dialogs

* edited links, fixed typos to scorables article

* added date/title/header, grammar change

* Updated bot-builder-dotnet-scorable-dialogs.md

* Update filenames.md

* Added entries about the documentation (#206)

* Slack review (#204)

* Scorable review (#203)

* Grammar correction. Whose, not Who's (#33)

* Updated to correct version of IISExpress (#35)

* Changed AttachmentLayouts to AttachmentLayoutTypes (#38)

The types of Attachment Layouts class is called AttachmentLayoutTypes and not AttachmentLayouts.
https://docs.botframework.com/en-us/csharp/builder/sdkreference/d7/d87/class_microsoft_1_1_bot_1_1_connector_1_1_attachment_layout_types.html

* Update resources-tools-downloads.md (#31)

* Update resources-tools-downloads.md

Add information for how to install the Visual Studio project templates.

* Update resources-tools-downloads.md

* Release 08-01-2017 (#207)

* Updating next step

* Fixing illegal bookmark usage

* Fixing build warning in dotnet reference

* Fixing build warning in dotnet reference

* Staging for fix from nuget release

* Cropped out wechat icon. wechat is not supported (#209)

* three downloads for one template (#212)

* Initialize open publishing repository: https://github.com/MicrosoftDocs/bot-docs-pr of branch live

* Initialize open publishing repository: https://github.com/MicrosoftDocs/bot-docs-pr of branch master

* Fix for bug# 17564. Add gitter.im, specifically the BotBuilder ROOM (#216)

Bug details: https://fuselabs.visualstudio.com/BFDocs/_workitems/edit/17564

* Release 08-03-2017 (#217)

* Release 08-04-2017 (#221)

* 17561 deploy from local git (#215)

* add ms.date metadata (#219)

* Fixing search scope

* Resolve syncing conflicts from community-content-live-sync-work to community-content (#222)

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* ISO 639-2 recommends use of the language codes in lower case (#175)

* Grammar correction. Whose, not Who's (#33)

* Updated to correct version of IISExpress (#35)

* Update resources-tools-downloads.md (#31)

* Update resources-tools-downloads.md

Add information for how to install the Visual Studio project templates.

* Update resources-tools-downloads.md

* Changed AttachmentLayouts to AttachmentLayoutTypes (#38)

The types of Attachment Layouts class is called AttachmentLayoutTypes and not AttachmentLayouts.
https://docs.botframework.com/en-us/csharp/builder/sdkreference/d7/d87/class_microsoft_1_1_bot_1_1_connector_1_1_attachment_layout_types.html

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Dialog next steps (#177)

* Added clarification for ListStyle in Prompts.choice

* Minor copy edits.

* Add reference to Manage state data topic.

* Saving progress...

* Bind actions to dialog

* Types table link to section instead.

* Confirm interruptions

* Added some more details and made some minor edits.

* Update links to reflect new file name for the 'Handle user actions' topic.

* Fix broken link.

* minor edits to the Actions topic and cross linking.

* fixed broken link

* Redirecting to the new topic.

* Revised content ready for review.

* fix broken links.

* Fixed Action node to live under Dialog.

* Edit based on revision comments.

* Fix broken link to "Action precedence" section.

* Dialog Overview - edited based on review feedback.

* Added a "Next step" section to each topics.

* Reorder Dialog TOC topics

* with revisions from paper notes

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Added Next step and move Dialogs before Messages in the TOC.

* Update referece to te persistCoversatioData flag...it's enabled by default.

* Clarify reference to global actions and added new section for customAction to the topic.

* Updated Next step to use button instead of link.

* Remove "Null response" section based on SteveIckman feedback.

* Update section to say "Next steps" for consistencies.

* Removing extraneous Additional Resources section

* Subscribe to bot events, always show bot online (#189)

Slack doc update

* Changing author alias (#193)

* links to best current samples, User Story 17067 (#185)

Fixed sample references.

* Second effort for PR181 (#187)

Next Steps and Requirement about .NET 4.6

* Groupme screencaps (#191)

GroupMe screen changes.

* Fixed broken anchor links from table to section in topic. (#195)

* Adding NoIndex, NoFollow to metadata (#196)

* Removing broken video

* Update bot-builder-nodejs-cortana-skill.md

Fixed bug reported by PM. Removed "Sign In Card" for Cortana channel link due to a security bug that we recently discovered.

* added dotnet scorable dialogs (#180)

* added dotnet scorable dialogs

* edited links, fixed typos to scorables article

* added date/title/header, grammar change

* Updated bot-builder-dotnet-scorable-dialogs.md

* Update filenames.md

* Added entries about the documentation (#206)

* Slack review (#204)

* Scorable review (#203)

* Resolve syncing conflicts from live-sync-work to live (#39)

* Release 07-07-2017 (#176)

* ISO 639-2 recommends use of the language codes in lower case (#175)

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Release 07-14-2017 (#184)

* Conversation designer (#178)

* Conversation Designer going live (#188)

* convert external Twilio links to HTML style target="_blank" to open in new tab.

* Secure bot reminder and ngrok command.

If you're debugging through Cortana, then the Microsoft App credentials need to specified in both the Bot Framework portal and the Web.config file. I also found that bots always ran on port 3979. And lastly, unless I specified the host header the requests would fail with 400.

* convert external links to open in new tab

* update external links to open in new tab

* Update bot-builder-nodejs-global-handlers.md

Added missing comma's in the examples of trigger actions

* Fixing link

* Revert "Merging upstream into public"

This reverts commit ed2438b, reversing
changes made to f4200df.

* Dotnet form flow updates (#161)

* Updated .NET FormFlow articles to add links to sample code on GitHub.

* Fixed broken link.

* Updated .NET FormFlow articles to move Sample code section.

* Fixed broken link.

* Update IActivity.xml

* Update IActivity.xml

Fixing indentation.

* Updating summary for ChannelData

* Updating IActivity docs with ChannelData remarks

* bugfix: domain parameter and log=false for compliance (#164)

* fix bug - domain parameter

* section link, class definition

* document log=off for privacy compliance

* fix heading

* Change .NET Framework target version (#166)

* Adding DirectLine to REST card (#167)

* Typo fix

* Removing location control from hub

* little fixes (#169)

Add an optional extended description…

* clicking on a speech bubble reveals the JSON data underlying the message. (#171)

* Microsoft.Bot.Builder template requires IIS Express; added download link. (#170)

* The Microsoft.Bot.Builder template requires IIS Express, so now there's a link where you can download it.

* occasional requirement: IIS Express download, a bit hard to find this link so now it's noted near the place where it's (occasionally) needed.

* section: dialog-based proactive message - fix broken sample code & link to botadaptor.js file

* add back comment with note about session.userData

* fix typo

* Anchor links (#173)

* Promoting questions to H2s for anchor links

* Updating title and H1

* Fixing outdated anchor links

* VS Community isn't supported by the template

* Update dos-and-donts.md

* Update style-and-voice.md

* Update style-and-voice.md

* Fixing link to botadapter.js

* section: dialog-based proactive message - fix broken sample code & link to botadaptor.js file

* add back comment with note about session.userData

* fix typo

* ISO 639-2 recommends use of the language codes in lower case (#175)

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Dialog next steps (#177)

* Added clarification for ListStyle in Prompts.choice

* Minor copy edits.

* Add reference to Manage state data topic.

* Saving progress...

* Bind actions to dialog

* Types table link to section instead.

* Confirm interruptions

* Added some more details and made some minor edits.

* Update links to reflect new file name for the 'Handle user actions' topic.

* Fix broken link.

* minor edits to the Actions topic and cross linking.

* fixed broken link

* Redirecting to the new topic.

* Revised content ready for review.

* fix broken links.

* Fixed Action node to live under Dialog.

* Edit based on revision comments.

* Fix broken link to "Action precedence" section.

* Dialog Overview - edited based on review feedback.

* Added a "Next step" section to each topics.

* Reorder Dialog TOC topics

* with revisions from paper notes

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Added Next step and move Dialogs before Messages in the TOC.

* Update referece to te persistCoversatioData flag...it's enabled by default.

* Clarify reference to global actions and added new section for customAction to the topic.

* Updated Next step to use button instead of link.

* Remove "Null response" section based on SteveIckman feedback.

* Update section to say "Next steps" for consistencies.

* Removing extraneous Additional Resources section

* Release 7-20-2017

* Added clarification for ListStyle in Prompts.choice

* Minor copy edits.

* Add reference to Manage state data topic.

* Saving progress...

* Bind actions to dialog

* Types table link to section instead.

* Confirm interruptions

* Added some more details and made some minor edits.

* Update links to reflect new file name for the 'Handle user actions' topic.

* Fix broken link.

* minor edits to the Actions topic and cross linking.

* fixed broken link

* Redirecting to the new topic.

* Revised content ready for review.

* fix broken links.

* Fixed Action node to live under Dialog.

* Edit based on revision comments.

* Fix broken link to "Action precedence" section.

* Dialog Overview - edited based on review feedback.

* Added a "Next step" section to each topics.

* Reorder Dialog TOC topics

* with revisions from paper notes

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Added Next step and move Dialogs before Messages in the TOC.

* Update referece to te persistCoversatioData flag...it's enabled by default.

* Clarify reference to global actions and added new section for customAction to the topic.

* Updated Next step to use button instead of link.

* Remove "Null response" section based on SteveIckman feedback.

* Update section to say "Next steps" for consistencies.

* Removing extraneous Additional Resources section

* Subscribe to bot events, always show bot online (#189)

Slack doc update

* Changing author alias (#193)

* links to best current samples, User Story 17067 (#185)

Fixed sample references.

* Second effort for PR181 (#187)

Next Steps and Requirement about .NET 4.6

* Groupme screencaps (#191)

GroupMe screen changes.

* Updates to Slack, GroupMe, sample links, next steps (#194)

* Fixed broken anchor links from table to section in topic. (#195)

* Adding NoIndex, NoFollow to metadata (#196)

* Release 7-24-2017 (#197)

* Removing broken video

* Update bot-builder-nodejs-cortana-skill.md

Fixed bug reported by PM. Removed "Sign In Card" for Cortana channel link due to a security bug that we recently discovered.

* Update bot-builder-nodejs-cortana-skill.md (#198)

Fixed bug reported by PM. Removed "Sign In Card" for Cortana channel link due to a security bug that we recently discovered.

* added dotnet scorable dialogs (#180)

* added dotnet scorable dialogs

* edited links, fixed typos to scorables article

* added date/title/header, grammar change

* Updated bot-builder-dotnet-scorable-dialogs.md

* Update filenames.md

* Added entries about the documentation (#206)

* Slack review (#204)

* Scorable review (#203)

* Grammar correction. Whose, not Who's (#33)

* Updated to correct version of IISExpress (#35)

* Changed AttachmentLayouts to AttachmentLayoutTypes (#38)

The types of Attachment Layouts class is called AttachmentLayoutTypes and not AttachmentLayouts.
https://docs.botframework.com/en-us/csharp/builder/sdkreference/d7/d87/class_microsoft_1_1_bot_1_1_connector_1_1_attachment_layout_types.html

* Update resources-tools-downloads.md (#31)

* Update resources-tools-downloads.md

Add information for how to install the Visual Studio project templates.

* Update resources-tools-downloads.md

* Release 08-01-2017 (#207)

* Updating next step

* Fixing illegal bookmark usage

* Fixing build warning in dotnet reference

* Fixing build warning in dotnet reference

* Staging for fix from nuget release

* Cropped out wechat icon. wechat is not supported (#209)

* three downloads for one template (#212)

* Initialize open publishing repository: https://github.com/MicrosoftDocs/bot-docs-pr of branch live

* Initialize open publishing repository: https://github.com/MicrosoftDocs/bot-docs-pr of branch master

* Fix for bug# 17564. Add gitter.im, specifically the BotBuilder ROOM (#216)

Bug details: https://fuselabs.visualstudio.com/BFDocs/_workitems/edit/17564

* Release 08-03-2017 (#217)

* Release 08-04-2017 (#221)

* 17561 deploy from local git (#215)

* add ms.date metadata (#219)

* Fixing search scope

* Revert "Resolve syncing conflicts from community-content-live-sync-work to community-content (#222)" (#224)

This reverts commit fb6545b.

* Fixing up merge artifacts

* Resolve syncing conflicts from live-sync-work to live (#40)

* Resolve syncing conflicts from community-content-live-sync-work to community-content (#227)

* Resolve syncing conflicts from community-content-live-sync-work to community-content (#229)

* Resolve syncing conflicts from community-content-live-sync-work to community-content (#230)

* Fixing up merge artifacts

* Delete duplicate section, correct info on how to select ListStyle (#41)

* Update bot-design-conversation-flow.md (#42)

* Update bot-builder-nodejs-send-suggested-actions.md (#43)

* Added ConsoleConnector language and example (#44)

* Update bot-builder-nodejs-send-suggested-actions.md

* Added ConsoleConnector language and example

* Add Teams as channel that supports TextFormat xml (#49)

* use numeric prompt for qry of ppl in reservation (#48)

* fix formatting for initial npm init invocation (#46)

* Update erroneous link to code snippet (#45)

* Just a little correction in spelling of visible (#50)

* Release 'live' 09-19-17 (#310) (#312)

* Fix improper equality operator in sample (#51)

* Update index.md

Added prereq of having to at least once manually log into http://luis.ai

* Fixed cut and paste error

* Updated content to match code snippets.

* Reverting proposed equality change. Code is more accurate with "===" than "!=".

* remove extra dollar sign (#52)

output: We sold 300 units for a total of $$9,000.
expected output: We sold 300 units for a total of $9,000.

* Resolve syncing conflicts from live-sync-work to live (#54)

* Update to describe Auth change v3.2 (#57)

* Release 10-05-2017 (#342)

* Fixing orphaned article

* proper capitalization (#341)

* ordering of app id and password step changed to last. (#340)

* Importance of serviceUrl for proactive messages (#58)

* Update contributor-guide-index.md

* Add guidance around on-topic questions for Stack Overflow (#62)

* Add guidance around on-topic questions for Stack Overflow

* Update article edit dates

* Correct "StackOverflow" to "Stack Overflow"

* Support link in TOC
openpublishbuild pushed a commit that referenced this pull request Oct 12, 2017
* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* ISO 639-2 recommends use of the language codes in lower case (#175)

* Grammar correction. Whose, not Who's (#33)

* Updated to correct version of IISExpress (#35)

* Update resources-tools-downloads.md (#31)

* Update resources-tools-downloads.md

Add information for how to install the Visual Studio project templates.

* Update resources-tools-downloads.md

* Changed AttachmentLayouts to AttachmentLayoutTypes (#38)

The types of Attachment Layouts class is called AttachmentLayoutTypes and not AttachmentLayouts.
https://docs.botframework.com/en-us/csharp/builder/sdkreference/d7/d87/class_microsoft_1_1_bot_1_1_connector_1_1_attachment_layout_types.html

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Dialog next steps (#177)

* Added clarification for ListStyle in Prompts.choice

* Minor copy edits.

* Add reference to Manage state data topic.

* Saving progress...

* Bind actions to dialog

* Types table link to section instead.

* Confirm interruptions

* Added some more details and made some minor edits.

* Update links to reflect new file name for the 'Handle user actions' topic.

* Fix broken link.

* minor edits to the Actions topic and cross linking.

* fixed broken link

* Redirecting to the new topic.

* Revised content ready for review.

* fix broken links.

* Fixed Action node to live under Dialog.

* Edit based on revision comments.

* Fix broken link to "Action precedence" section.

* Dialog Overview - edited based on review feedback.

* Added a "Next step" section to each topics.

* Reorder Dialog TOC topics

* with revisions from paper notes

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Added Next step and move Dialogs before Messages in the TOC.

* Update referece to te persistCoversatioData flag...it's enabled by default.

* Clarify reference to global actions and added new section for customAction to the topic.

* Updated Next step to use button instead of link.

* Remove "Null response" section based on SteveIckman feedback.

* Update section to say "Next steps" for consistencies.

* Removing extraneous Additional Resources section

* Subscribe to bot events, always show bot online (#189)

Slack doc update

* Changing author alias (#193)

* links to best current samples, User Story 17067 (#185)

Fixed sample references.

* Second effort for PR181 (#187)

Next Steps and Requirement about .NET 4.6

* Groupme screencaps (#191)

GroupMe screen changes.

* Fixed broken anchor links from table to section in topic. (#195)

* Adding NoIndex, NoFollow to metadata (#196)

* Removing broken video

* Update bot-builder-nodejs-cortana-skill.md

Fixed bug reported by PM. Removed "Sign In Card" for Cortana channel link due to a security bug that we recently discovered.

* added dotnet scorable dialogs (#180)

* added dotnet scorable dialogs

* edited links, fixed typos to scorables article

* added date/title/header, grammar change

* Updated bot-builder-dotnet-scorable-dialogs.md

* Update filenames.md

* Added entries about the documentation (#206)

* Slack review (#204)

* Scorable review (#203)

* Resolve syncing conflicts from live-sync-work to live (#39)

* Release 07-07-2017 (#176)

* ISO 639-2 recommends use of the language codes in lower case (#175)

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Release 07-14-2017 (#184)

* Conversation designer (#178)

* Conversation Designer going live (#188)

* convert external Twilio links to HTML style target="_blank" to open in new tab.

* Secure bot reminder and ngrok command.

If you're debugging through Cortana, then the Microsoft App credentials need to specified in both the Bot Framework portal and the Web.config file. I also found that bots always ran on port 3979. And lastly, unless I specified the host header the requests would fail with 400.

* convert external links to open in new tab

* update external links to open in new tab

* Update bot-builder-nodejs-global-handlers.md

Added missing comma's in the examples of trigger actions

* Fixing link

* Revert "Merging upstream into public"

This reverts commit ed2438b, reversing
changes made to f4200df.

* Dotnet form flow updates (#161)

* Updated .NET FormFlow articles to add links to sample code on GitHub.

* Fixed broken link.

* Updated .NET FormFlow articles to move Sample code section.

* Fixed broken link.

* Update IActivity.xml

* Update IActivity.xml

Fixing indentation.

* Updating summary for ChannelData

* Updating IActivity docs with ChannelData remarks

* bugfix: domain parameter and log=false for compliance (#164)

* fix bug - domain parameter

* section link, class definition

* document log=off for privacy compliance

* fix heading

* Change .NET Framework target version (#166)

* Adding DirectLine to REST card (#167)

* Typo fix

* Removing location control from hub

* little fixes (#169)

Add an optional extended description…

* clicking on a speech bubble reveals the JSON data underlying the message. (#171)

* Microsoft.Bot.Builder template requires IIS Express; added download link. (#170)

* The Microsoft.Bot.Builder template requires IIS Express, so now there's a link where you can download it.

* occasional requirement: IIS Express download, a bit hard to find this link so now it's noted near the place where it's (occasionally) needed.

* section: dialog-based proactive message - fix broken sample code & link to botadaptor.js file

* add back comment with note about session.userData

* fix typo

* Anchor links (#173)

* Promoting questions to H2s for anchor links

* Updating title and H1

* Fixing outdated anchor links

* VS Community isn't supported by the template

* Update dos-and-donts.md

* Update style-and-voice.md

* Update style-and-voice.md

* Fixing link to botadapter.js

* section: dialog-based proactive message - fix broken sample code & link to botadaptor.js file

* add back comment with note about session.userData

* fix typo

* ISO 639-2 recommends use of the language codes in lower case (#175)

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Dialog next steps (#177)

* Added clarification for ListStyle in Prompts.choice

* Minor copy edits.

* Add reference to Manage state data topic.

* Saving progress...

* Bind actions to dialog

* Types table link to section instead.

* Confirm interruptions

* Added some more details and made some minor edits.

* Update links to reflect new file name for the 'Handle user actions' topic.

* Fix broken link.

* minor edits to the Actions topic and cross linking.

* fixed broken link

* Redirecting to the new topic.

* Revised content ready for review.

* fix broken links.

* Fixed Action node to live under Dialog.

* Edit based on revision comments.

* Fix broken link to "Action precedence" section.

* Dialog Overview - edited based on review feedback.

* Added a "Next step" section to each topics.

* Reorder Dialog TOC topics

* with revisions from paper notes

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Added Next step and move Dialogs before Messages in the TOC.

* Update referece to te persistCoversatioData flag...it's enabled by default.

* Clarify reference to global actions and added new section for customAction to the topic.

* Updated Next step to use button instead of link.

* Remove "Null response" section based on SteveIckman feedback.

* Update section to say "Next steps" for consistencies.

* Removing extraneous Additional Resources section

* Release 7-20-2017

* Added clarification for ListStyle in Prompts.choice

* Minor copy edits.

* Add reference to Manage state data topic.

* Saving progress...

* Bind actions to dialog

* Types table link to section instead.

* Confirm interruptions

* Added some more details and made some minor edits.

* Update links to reflect new file name for the 'Handle user actions' topic.

* Fix broken link.

* minor edits to the Actions topic and cross linking.

* fixed broken link

* Redirecting to the new topic.

* Revised content ready for review.

* fix broken links.

* Fixed Action node to live under Dialog.

* Edit based on revision comments.

* Fix broken link to "Action precedence" section.

* Dialog Overview - edited based on review feedback.

* Added a "Next step" section to each topics.

* Reorder Dialog TOC topics

* with revisions from paper notes

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Added Next step and move Dialogs before Messages in the TOC.

* Update referece to te persistCoversatioData flag...it's enabled by default.

* Clarify reference to global actions and added new section for customAction to the topic.

* Updated Next step to use button instead of link.

* Remove "Null response" section based on SteveIckman feedback.

* Update section to say "Next steps" for consistencies.

* Removing extraneous Additional Resources section

* Subscribe to bot events, always show bot online (#189)

Slack doc update

* Changing author alias (#193)

* links to best current samples, User Story 17067 (#185)

Fixed sample references.

* Second effort for PR181 (#187)

Next Steps and Requirement about .NET 4.6

* Groupme screencaps (#191)

GroupMe screen changes.

* Updates to Slack, GroupMe, sample links, next steps (#194)

* Fixed broken anchor links from table to section in topic. (#195)

* Adding NoIndex, NoFollow to metadata (#196)

* Release 7-24-2017 (#197)

* Removing broken video

* Update bot-builder-nodejs-cortana-skill.md

Fixed bug reported by PM. Removed "Sign In Card" for Cortana channel link due to a security bug that we recently discovered.

* Update bot-builder-nodejs-cortana-skill.md (#198)

Fixed bug reported by PM. Removed "Sign In Card" for Cortana channel link due to a security bug that we recently discovered.

* added dotnet scorable dialogs (#180)

* added dotnet scorable dialogs

* edited links, fixed typos to scorables article

* added date/title/header, grammar change

* Updated bot-builder-dotnet-scorable-dialogs.md

* Update filenames.md

* Added entries about the documentation (#206)

* Slack review (#204)

* Scorable review (#203)

* Grammar correction. Whose, not Who's (#33)

* Updated to correct version of IISExpress (#35)

* Changed AttachmentLayouts to AttachmentLayoutTypes (#38)

The types of Attachment Layouts class is called AttachmentLayoutTypes and not AttachmentLayouts.
https://docs.botframework.com/en-us/csharp/builder/sdkreference/d7/d87/class_microsoft_1_1_bot_1_1_connector_1_1_attachment_layout_types.html

* Update resources-tools-downloads.md (#31)

* Update resources-tools-downloads.md

Add information for how to install the Visual Studio project templates.

* Update resources-tools-downloads.md

* Release 08-01-2017 (#207)

* Updating next step

* Fixing illegal bookmark usage

* Fixing build warning in dotnet reference

* Fixing build warning in dotnet reference

* Staging for fix from nuget release

* Cropped out wechat icon. wechat is not supported (#209)

* three downloads for one template (#212)

* Initialize open publishing repository: https://github.com/MicrosoftDocs/bot-docs-pr of branch live

* Initialize open publishing repository: https://github.com/MicrosoftDocs/bot-docs-pr of branch master

* Fix for bug# 17564. Add gitter.im, specifically the BotBuilder ROOM (#216)

Bug details: https://fuselabs.visualstudio.com/BFDocs/_workitems/edit/17564

* Release 08-03-2017 (#217)

* Release 08-04-2017 (#221)

* 17561 deploy from local git (#215)

* add ms.date metadata (#219)

* Fixing search scope

* Resolve syncing conflicts from community-content-live-sync-work to community-content (#222)

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* ISO 639-2 recommends use of the language codes in lower case (#175)

* Grammar correction. Whose, not Who's (#33)

* Updated to correct version of IISExpress (#35)

* Update resources-tools-downloads.md (#31)

* Update resources-tools-downloads.md

Add information for how to install the Visual Studio project templates.

* Update resources-tools-downloads.md

* Changed AttachmentLayouts to AttachmentLayoutTypes (#38)

The types of Attachment Layouts class is called AttachmentLayoutTypes and not AttachmentLayouts.
https://docs.botframework.com/en-us/csharp/builder/sdkreference/d7/d87/class_microsoft_1_1_bot_1_1_connector_1_1_attachment_layout_types.html

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Dialog next steps (#177)

* Added clarification for ListStyle in Prompts.choice

* Minor copy edits.

* Add reference to Manage state data topic.

* Saving progress...

* Bind actions to dialog

* Types table link to section instead.

* Confirm interruptions

* Added some more details and made some minor edits.

* Update links to reflect new file name for the 'Handle user actions' topic.

* Fix broken link.

* minor edits to the Actions topic and cross linking.

* fixed broken link

* Redirecting to the new topic.

* Revised content ready for review.

* fix broken links.

* Fixed Action node to live under Dialog.

* Edit based on revision comments.

* Fix broken link to "Action precedence" section.

* Dialog Overview - edited based on review feedback.

* Added a "Next step" section to each topics.

* Reorder Dialog TOC topics

* with revisions from paper notes

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Added Next step and move Dialogs before Messages in the TOC.

* Update referece to te persistCoversatioData flag...it's enabled by default.

* Clarify reference to global actions and added new section for customAction to the topic.

* Updated Next step to use button instead of link.

* Remove "Null response" section based on SteveIckman feedback.

* Update section to say "Next steps" for consistencies.

* Removing extraneous Additional Resources section

* Subscribe to bot events, always show bot online (#189)

Slack doc update

* Changing author alias (#193)

* links to best current samples, User Story 17067 (#185)

Fixed sample references.

* Second effort for PR181 (#187)

Next Steps and Requirement about .NET 4.6

* Groupme screencaps (#191)

GroupMe screen changes.

* Fixed broken anchor links from table to section in topic. (#195)

* Adding NoIndex, NoFollow to metadata (#196)

* Removing broken video

* Update bot-builder-nodejs-cortana-skill.md

Fixed bug reported by PM. Removed "Sign In Card" for Cortana channel link due to a security bug that we recently discovered.

* added dotnet scorable dialogs (#180)

* added dotnet scorable dialogs

* edited links, fixed typos to scorables article

* added date/title/header, grammar change

* Updated bot-builder-dotnet-scorable-dialogs.md

* Update filenames.md

* Added entries about the documentation (#206)

* Slack review (#204)

* Scorable review (#203)

* Resolve syncing conflicts from live-sync-work to live (#39)

* Release 07-07-2017 (#176)

* ISO 639-2 recommends use of the language codes in lower case (#175)

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Release 07-14-2017 (#184)

* Conversation designer (#178)

* Conversation Designer going live (#188)

* convert external Twilio links to HTML style target="_blank" to open in new tab.

* Secure bot reminder and ngrok command.

If you're debugging through Cortana, then the Microsoft App credentials need to specified in both the Bot Framework portal and the Web.config file. I also found that bots always ran on port 3979. And lastly, unless I specified the host header the requests would fail with 400.

* convert external links to open in new tab

* update external links to open in new tab

* Update bot-builder-nodejs-global-handlers.md

Added missing comma's in the examples of trigger actions

* Fixing link

* Revert "Merging upstream into public"

This reverts commit ed2438b, reversing
changes made to f4200df.

* Dotnet form flow updates (#161)

* Updated .NET FormFlow articles to add links to sample code on GitHub.

* Fixed broken link.

* Updated .NET FormFlow articles to move Sample code section.

* Fixed broken link.

* Update IActivity.xml

* Update IActivity.xml

Fixing indentation.

* Updating summary for ChannelData

* Updating IActivity docs with ChannelData remarks

* bugfix: domain parameter and log=false for compliance (#164)

* fix bug - domain parameter

* section link, class definition

* document log=off for privacy compliance

* fix heading

* Change .NET Framework target version (#166)

* Adding DirectLine to REST card (#167)

* Typo fix

* Removing location control from hub

* little fixes (#169)

Add an optional extended description…

* clicking on a speech bubble reveals the JSON data underlying the message. (#171)

* Microsoft.Bot.Builder template requires IIS Express; added download link. (#170)

* The Microsoft.Bot.Builder template requires IIS Express, so now there's a link where you can download it.

* occasional requirement: IIS Express download, a bit hard to find this link so now it's noted near the place where it's (occasionally) needed.

* section: dialog-based proactive message - fix broken sample code & link to botadaptor.js file

* add back comment with note about session.userData

* fix typo

* Anchor links (#173)

* Promoting questions to H2s for anchor links

* Updating title and H1

* Fixing outdated anchor links

* VS Community isn't supported by the template

* Update dos-and-donts.md

* Update style-and-voice.md

* Update style-and-voice.md

* Fixing link to botadapter.js

* section: dialog-based proactive message - fix broken sample code & link to botadaptor.js file

* add back comment with note about session.userData

* fix typo

* ISO 639-2 recommends use of the language codes in lower case (#175)

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Dialog next steps (#177)

* Added clarification for ListStyle in Prompts.choice

* Minor copy edits.

* Add reference to Manage state data topic.

* Saving progress...

* Bind actions to dialog

* Types table link to section instead.

* Confirm interruptions

* Added some more details and made some minor edits.

* Update links to reflect new file name for the 'Handle user actions' topic.

* Fix broken link.

* minor edits to the Actions topic and cross linking.

* fixed broken link

* Redirecting to the new topic.

* Revised content ready for review.

* fix broken links.

* Fixed Action node to live under Dialog.

* Edit based on revision comments.

* Fix broken link to "Action precedence" section.

* Dialog Overview - edited based on review feedback.

* Added a "Next step" section to each topics.

* Reorder Dialog TOC topics

* with revisions from paper notes

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Added Next step and move Dialogs before Messages in the TOC.

* Update referece to te persistCoversatioData flag...it's enabled by default.

* Clarify reference to global actions and added new section for customAction to the topic.

* Updated Next step to use button instead of link.

* Remove "Null response" section based on SteveIckman feedback.

* Update section to say "Next steps" for consistencies.

* Removing extraneous Additional Resources section

* Release 7-20-2017

* Added clarification for ListStyle in Prompts.choice

* Minor copy edits.

* Add reference to Manage state data topic.

* Saving progress...

* Bind actions to dialog

* Types table link to section instead.

* Confirm interruptions

* Added some more details and made some minor edits.

* Update links to reflect new file name for the 'Handle user actions' topic.

* Fix broken link.

* minor edits to the Actions topic and cross linking.

* fixed broken link

* Redirecting to the new topic.

* Revised content ready for review.

* fix broken links.

* Fixed Action node to live under Dialog.

* Edit based on revision comments.

* Fix broken link to "Action precedence" section.

* Dialog Overview - edited based on review feedback.

* Added a "Next step" section to each topics.

* Reorder Dialog TOC topics

* with revisions from paper notes

* Update bot-builder-dotnet-quickstart.md

Restoring links to the controller & dialog templates that were present in previous documentation

* Removing bad metadata (#183)

* Conversation designer (#178)

* requires (#186)

* Added Next step and move Dialogs before Messages in the TOC.

* Update referece to te persistCoversatioData flag...it's enabled by default.

* Clarify reference to global actions and added new section for customAction to the topic.

* Updated Next step to use button instead of link.

* Remove "Null response" section based on SteveIckman feedback.

* Update section to say "Next steps" for consistencies.

* Removing extraneous Additional Resources section

* Subscribe to bot events, always show bot online (#189)

Slack doc update

* Changing author alias (#193)

* links to best current samples, User Story 17067 (#185)

Fixed sample references.

* Second effort for PR181 (#187)

Next Steps and Requirement about .NET 4.6

* Groupme screencaps (#191)

GroupMe screen changes.

* Updates to Slack, GroupMe, sample links, next steps (#194)

* Fixed broken anchor links from table to section in topic. (#195)

* Adding NoIndex, NoFollow to metadata (#196)

* Release 7-24-2017 (#197)

* Removing broken video

* Update bot-builder-nodejs-cortana-skill.md

Fixed bug reported by PM. Removed "Sign In Card" for Cortana channel link due to a security bug that we recently discovered.

* Update bot-builder-nodejs-cortana-skill.md (#198)

Fixed bug reported by PM. Removed "Sign In Card" for Cortana channel link due to a security bug that we recently discovered.

* added dotnet scorable dialogs (#180)

* added dotnet scorable dialogs

* edited links, fixed typos to scorables article

* added date/title/header, grammar change

* Updated bot-builder-dotnet-scorable-dialogs.md

* Update filenames.md

* Added entries about the documentation (#206)

* Slack review (#204)

* Scorable review (#203)

* Grammar correction. Whose, not Who's (#33)

* Updated to correct version of IISExpress (#35)

* Changed AttachmentLayouts to AttachmentLayoutTypes (#38)

The types of Attachment Layouts class is called AttachmentLayoutTypes and not AttachmentLayouts.
https://docs.botframework.com/en-us/csharp/builder/sdkreference/d7/d87/class_microsoft_1_1_bot_1_1_connector_1_1_attachment_layout_types.html

* Update resources-tools-downloads.md (#31)

* Update resources-tools-downloads.md

Add information for how to install the Visual Studio project templates.

* Update resources-tools-downloads.md

* Release 08-01-2017 (#207)

* Updating next step

* Fixing illegal bookmark usage

* Fixing build warning in dotnet reference

* Fixing build warning in dotnet reference

* Staging for fix from nuget release

* Cropped out wechat icon. wechat is not supported (#209)

* three downloads for one template (#212)

* Initialize open publishing repository: https://github.com/MicrosoftDocs/bot-docs-pr of branch live

* Initialize open publishing repository: https://github.com/MicrosoftDocs/bot-docs-pr of branch master

* Fix for bug# 17564. Add gitter.im, specifically the BotBuilder ROOM (#216)

Bug details: https://fuselabs.visualstudio.com/BFDocs/_workitems/edit/17564

* Release 08-03-2017 (#217)

* Release 08-04-2017 (#221)

* 17561 deploy from local git (#215)

* add ms.date metadata (#219)

* Fixing search scope

* Revert "Resolve syncing conflicts from community-content-live-sync-work to community-content (#222)" (#224)

This reverts commit fb6545b.

* Fixing up merge artifacts

* Resolve syncing conflicts from live-sync-work to live (#40)

* Resolve syncing conflicts from community-content-live-sync-work to community-content (#227)

* Resolve syncing conflicts from community-content-live-sync-work to community-content (#229)

* Resolve syncing conflicts from community-content-live-sync-work to community-content (#230)

* Fixing up merge artifacts

* Delete duplicate section, correct info on how to select ListStyle (#41)

* Update bot-design-conversation-flow.md (#42)

* Update bot-builder-nodejs-send-suggested-actions.md (#43)

* Added ConsoleConnector language and example (#44)

* Update bot-builder-nodejs-send-suggested-actions.md

* Added ConsoleConnector language and example

* Add Teams as channel that supports TextFormat xml (#49)

* use numeric prompt for qry of ppl in reservation (#48)

* fix formatting for initial npm init invocation (#46)

* Update erroneous link to code snippet (#45)

* Just a little correction in spelling of visible (#50)

* Release 'live' 09-19-17 (#310) (#312)

* Fix improper equality operator in sample (#51)

* Update index.md

Added prereq of having to at least once manually log into http://luis.ai

* Fixed cut and paste error

* Updated content to match code snippets.

* Reverting proposed equality change. Code is more accurate with "===" than "!=".

* remove extra dollar sign (#52)

output: We sold 300 units for a total of $$9,000.
expected output: We sold 300 units for a total of $9,000.

* Resolve syncing conflicts from live-sync-work to live (#54)

* Update to describe Auth change v3.2 (#57)

* Release 10-05-2017 (#342)

* Fixing orphaned article

* proper capitalization (#341)

* ordering of app id and password step changed to last. (#340)

* Importance of serviceUrl for proactive messages (#58)

* Update contributor-guide-index.md

* Add guidance around on-topic questions for Stack Overflow (#62)

* Add guidance around on-topic questions for Stack Overflow

* Update article edit dates

* Correct "StackOverflow" to "Stack Overflow"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants