sp-dev-fx-webparts/samples/react-bot-framework/vs2015-bot-application
Vesa Juvonen d5b3edb9d9 Link fixes on readme file 2016-10-28 17:01:19 +03:00
..
App_Start Added sample VS2015 bot application, which can be used with the client-side web part sample. Few modifications on the readme to help on setting up the sample. 2016-10-28 16:30:41 +03:00
Controllers Added sample VS2015 bot application, which can be used with the client-side web part sample. Few modifications on the readme to help on setting up the sample. 2016-10-28 16:30:41 +03:00
Properties Added sample VS2015 bot application, which can be used with the client-side web part sample. Few modifications on the readme to help on setting up the sample. 2016-10-28 16:30:41 +03:00
Global.asax Added sample VS2015 bot application, which can be used with the client-side web part sample. Few modifications on the readme to help on setting up the sample. 2016-10-28 16:30:41 +03:00
Global.asax.cs Added sample VS2015 bot application, which can be used with the client-side web part sample. Few modifications on the readme to help on setting up the sample. 2016-10-28 16:30:41 +03:00
README.md Added sample VS2015 bot application, which can be used with the client-side web part sample. Few modifications on the readme to help on setting up the sample. 2016-10-28 16:30:41 +03:00
Simple Bot Application.csproj Added sample VS2015 bot application, which can be used with the client-side web part sample. Few modifications on the readme to help on setting up the sample. 2016-10-28 16:30:41 +03:00
Simple Bot Application.csproj.user Added sample VS2015 bot application, which can be used with the client-side web part sample. Few modifications on the readme to help on setting up the sample. 2016-10-28 16:30:41 +03:00
Simple Bot Application.sln Added sample VS2015 bot application, which can be used with the client-side web part sample. Few modifications on the readme to help on setting up the sample. 2016-10-28 16:30:41 +03:00
Web.Debug.config Added sample VS2015 bot application, which can be used with the client-side web part sample. Few modifications on the readme to help on setting up the sample. 2016-10-28 16:30:41 +03:00
Web.Release.config Added sample VS2015 bot application, which can be used with the client-side web part sample. Few modifications on the readme to help on setting up the sample. 2016-10-28 16:30:41 +03:00
Web.config Link fixes on readme file 2016-10-28 17:01:19 +03:00
default.htm Added sample VS2015 bot application, which can be used with the client-side web part sample. Few modifications on the readme to help on setting up the sample. 2016-10-28 16:30:41 +03:00
packages.config Added sample VS2015 bot application, which can be used with the client-side web part sample. Few modifications on the readme to help on setting up the sample. 2016-10-28 16:30:41 +03:00

README.md

Microsoft Bot Framework Web Chat - Visual Studio 2015 bot project

Summary

Simple VS 2015 project created with the Microsoft Bot Framework templates. Meant to be used together with associated SP Fx client side web part, which is assocated to talk to this bot.

Applies to

Version history

Version Date Comments
1.0 October 28th, 2016 Initial release

Disclaimer

THIS CODE IS PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.


Minimal Path to Awesome

  • Clone this repository
  • Open this Visual Studio Project in Visual Studio 2015
  • Compile the code
  • Register bot in Bot Framework Portal for getting MicrosoftAppId and MicrosoftAppPassword values needed for web.configure
  • Update web.config accordingly
  • Deploy to be hosted in Azure

See following URLs for more details on the step-by-step guidance

Needed configuration settings

You will need to update following three configuration options in the web.config for making this template work properly.

 <appSettings>
    <!-- update these with your BotId, Microsoft App Id and your Microsoft App Password-->
    <add key="BotId" value="update-to-your-value" />
    <add key="MicrosoftAppId" value="update-to-your-value" />
    <add key="MicrosoftAppPassword" value="update-to-your-value" />
  </appSettings>