Skip to content

Commit 2567043

Browse files
author
Russ Williams
committed
Added header graphic
1 parent 3103fcd commit 2567043

9 files changed

+13
-9
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

DialogAccelerator/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ with this dialog and then choose **Add**
3636

3737
2. Copy the entire source code of GetLibraryCard.cs found [here](GetLibraryCard.cs) into
3838
your paste buffer by clicking the **Raw** button and then Control-A and then Control-C
39-
> <img src="/Images/RawButton.png" width="200">
39+
> <img src="./Images/RawButton.png" width="200">
4040
3. Switch back Visual Studio and delete the entire contents of the file you created
4141
in Step 1 and replace it with the current contents of your paste buffer (Control-V)
4242

@@ -49,7 +49,7 @@ you'll be ready to integrate it into the `MainDialog`.
4949
5. Dependency-inject the dialog into `MainDialog` by adding
5050
`YourIntentDialog yourIntentCard,` to the constructor of the `MainDialog` class
5151
in **MainDialog.cs**
52-
> <img src="/Images/DialogDI.png" width="400">
52+
> <img src="./Images/DialogDI.png" width="400">
5353
6. Locate the "Register dialogs" comment in the constructor and add `youIntentDialog`
5454

5555
```c#
@@ -70,17 +70,17 @@ the following code to the `switch(intent)` statement:
7070
}
7171
```
7272

73-
> <img src="/Images/BeginDialog.png" width="800">
73+
> <img src="./Images/BeginDialog.png" width="800">
7474
If you don't have a LUIS Intent that corresponds to this new dialog yet, you
7575
can go with "*Plan B*" and make the `case YourSkillName.Intent.Sample:`
7676
statement look like the following:
77-
> <img src="/Images/PlanBBeginDialog.png" width="600">
77+
> <img src="./Images/PlanBBeginDialog.png" width="600">
7878
7979
8. Finally, register the dialog for dependency injection by opening *Startup.cs* and
8080
choosing **Edit | Find and Replace | Quick Find** (or **Ctrl-F**) and typing **Register
8181
dialogs** in the search field and hit Return. Now add
8282
`services.AddTransient<YourIntentDialog>();` and it should look like the following:
83-
> <img src="/Images/Startup.png" width="350">
83+
> <img src="./Images/Startup.png" width="350">
8484
8585
9. Now your ready to test out Phase 1. Set your Skill to be the StartUp Project and
8686
start the the degugger. Now open your bot in the Bot Emulator and invoke your LUIS

Workshop/How to Build Your Bot.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
<img src="./Images/bot_framework_accelerators_header.png" >
2+
3+
# Overview
4+
5+
This workshop will guide you step-by-step through the process of developing an enterprise bot using the Microsoft Bot Framework and the Azure Bot Service. It's designed to acclerate the development of a Minimal Viable Product (MVP) that minimizes the time-to-value. So this workshop **IS NOT** about how to build **A BOT** , it's about how to build **YOUR BOT**! Think of it as the first sprint of your bot's MVP milestone.
6+
7+
Although you'll only execute the **Plan** and **Build** phases in this workshop, you can use the links in the the master plan below to guide you through the remaining phases and accelerate your bot journey all the way through to production deployment.
8+
19
# Contents
210

311
[Overview](#Overview)
@@ -42,10 +50,6 @@
4250
[Appendix – Important Links](#AppendixImportantLinks)
4351
[Appendix – Publish Virtual Assistant or Skill using Visual Studio](#AppendixPublishVirtualAssistantorSkillusingVisualStudio)
4452

45-
# Overview
46-
47-
This workshop **IS NOT** about how to build **A BOT** , it's about how to build **YOUR BOT**! Although you'll only execute the **Plan** and **Build** phases in this workshop, the links in the the master plan below will guide you through the remaining phases and accelerate your bot journey all the way through to production deployment.
48-
4953
# Plan
5054

5155
1. Workshop Prechecks and Prerequisites
Loading

0 commit comments

Comments
 (0)