├── .gitattributes ├── .gitignore ├── B8029 ├── CortanaSkillsHotelFinder │ ├── LuisBot.sln │ └── LuisBot │ │ ├── App_Start │ │ └── WebApiConfig.cs │ │ ├── Controllers │ │ └── MessagesController.cs │ │ ├── Dialogs │ │ └── RootLuisDialog.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Hotel.cs │ │ ├── HotelsQuery.cs │ │ ├── LuisBot.csproj │ │ ├── LuisBot.json │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SSMLhelper.cs │ │ ├── Services │ │ ├── BingSpellCheckError.cs │ │ ├── BingSpellCheckFlaggedToken.cs │ │ ├── BingSpellCheckResponse.cs │ │ ├── BingSpellCheckService.cs │ │ └── BingSpellCheckSuggestion.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── default.htm │ │ └── packages.config ├── README.md └── images │ ├── highlights-phrase.png │ ├── highlights-regex.png │ ├── outcome.png │ ├── prereqs-apikey.png │ ├── prereqs-appid.png │ └── prereqs-import.png ├── B8031 ├── BingMapsBot │ ├── BingMapsBot.sln │ └── BingMapsBot │ │ ├── App_Start │ │ └── WebApiConfig.cs │ │ ├── BingMapsBot.csproj │ │ ├── Controllers │ │ └── MessagesController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── default.htm │ │ └── packages.config ├── BingMapsQnA.tsv └── Readme.md ├── LICENSE ├── P4063 ├── README.md ├── birthday-bot-csharp │ ├── ConnectedAccountSample.sln │ └── ConnectedAccountSample │ │ ├── App_Start │ │ └── WebApiConfig.cs │ │ ├── ConnectedAccountSample.csproj │ │ ├── Controllers │ │ └── MessagesController.cs │ │ ├── Dialogs │ │ └── RootDialog.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── default.htm │ │ └── packages.config └── birthday-bot-node │ ├── app.js │ ├── package.json │ └── utils.js └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/.gitignore -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot.sln -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/Controllers/MessagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/Controllers/MessagesController.cs -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/Dialogs/RootLuisDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/Dialogs/RootLuisDialog.cs -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/Global.asax -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/Global.asax.cs -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/Hotel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/Hotel.cs -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/HotelsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/HotelsQuery.cs -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/LuisBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/LuisBot.csproj -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/LuisBot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/LuisBot.json -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/SSMLhelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/SSMLhelper.cs -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/Services/BingSpellCheckError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/Services/BingSpellCheckError.cs -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/Services/BingSpellCheckFlaggedToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/Services/BingSpellCheckFlaggedToken.cs -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/Services/BingSpellCheckResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/Services/BingSpellCheckResponse.cs -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/Services/BingSpellCheckService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/Services/BingSpellCheckService.cs -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/Services/BingSpellCheckSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/Services/BingSpellCheckSuggestion.cs -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/Web.Debug.config -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/Web.Release.config -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/Web.config -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/default.htm -------------------------------------------------------------------------------- /B8029/CortanaSkillsHotelFinder/LuisBot/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/CortanaSkillsHotelFinder/LuisBot/packages.config -------------------------------------------------------------------------------- /B8029/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/README.md -------------------------------------------------------------------------------- /B8029/images/highlights-phrase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/images/highlights-phrase.png -------------------------------------------------------------------------------- /B8029/images/highlights-regex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/images/highlights-regex.png -------------------------------------------------------------------------------- /B8029/images/outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/images/outcome.png -------------------------------------------------------------------------------- /B8029/images/prereqs-apikey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/images/prereqs-apikey.png -------------------------------------------------------------------------------- /B8029/images/prereqs-appid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/images/prereqs-appid.png -------------------------------------------------------------------------------- /B8029/images/prereqs-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8029/images/prereqs-import.png -------------------------------------------------------------------------------- /B8031/BingMapsBot/BingMapsBot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8031/BingMapsBot/BingMapsBot.sln -------------------------------------------------------------------------------- /B8031/BingMapsBot/BingMapsBot/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8031/BingMapsBot/BingMapsBot/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /B8031/BingMapsBot/BingMapsBot/BingMapsBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8031/BingMapsBot/BingMapsBot/BingMapsBot.csproj -------------------------------------------------------------------------------- /B8031/BingMapsBot/BingMapsBot/Controllers/MessagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8031/BingMapsBot/BingMapsBot/Controllers/MessagesController.cs -------------------------------------------------------------------------------- /B8031/BingMapsBot/BingMapsBot/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8031/BingMapsBot/BingMapsBot/Global.asax -------------------------------------------------------------------------------- /B8031/BingMapsBot/BingMapsBot/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8031/BingMapsBot/BingMapsBot/Global.asax.cs -------------------------------------------------------------------------------- /B8031/BingMapsBot/BingMapsBot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8031/BingMapsBot/BingMapsBot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /B8031/BingMapsBot/BingMapsBot/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8031/BingMapsBot/BingMapsBot/Web.Debug.config -------------------------------------------------------------------------------- /B8031/BingMapsBot/BingMapsBot/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8031/BingMapsBot/BingMapsBot/Web.Release.config -------------------------------------------------------------------------------- /B8031/BingMapsBot/BingMapsBot/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8031/BingMapsBot/BingMapsBot/Web.config -------------------------------------------------------------------------------- /B8031/BingMapsBot/BingMapsBot/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8031/BingMapsBot/BingMapsBot/default.htm -------------------------------------------------------------------------------- /B8031/BingMapsBot/BingMapsBot/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8031/BingMapsBot/BingMapsBot/packages.config -------------------------------------------------------------------------------- /B8031/BingMapsQnA.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8031/BingMapsQnA.tsv -------------------------------------------------------------------------------- /B8031/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/B8031/Readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/LICENSE -------------------------------------------------------------------------------- /P4063/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/README.md -------------------------------------------------------------------------------- /P4063/birthday-bot-csharp/ConnectedAccountSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/birthday-bot-csharp/ConnectedAccountSample.sln -------------------------------------------------------------------------------- /P4063/birthday-bot-csharp/ConnectedAccountSample/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/birthday-bot-csharp/ConnectedAccountSample/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /P4063/birthday-bot-csharp/ConnectedAccountSample/ConnectedAccountSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/birthday-bot-csharp/ConnectedAccountSample/ConnectedAccountSample.csproj -------------------------------------------------------------------------------- /P4063/birthday-bot-csharp/ConnectedAccountSample/Controllers/MessagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/birthday-bot-csharp/ConnectedAccountSample/Controllers/MessagesController.cs -------------------------------------------------------------------------------- /P4063/birthday-bot-csharp/ConnectedAccountSample/Dialogs/RootDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/birthday-bot-csharp/ConnectedAccountSample/Dialogs/RootDialog.cs -------------------------------------------------------------------------------- /P4063/birthday-bot-csharp/ConnectedAccountSample/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/birthday-bot-csharp/ConnectedAccountSample/Global.asax -------------------------------------------------------------------------------- /P4063/birthday-bot-csharp/ConnectedAccountSample/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/birthday-bot-csharp/ConnectedAccountSample/Global.asax.cs -------------------------------------------------------------------------------- /P4063/birthday-bot-csharp/ConnectedAccountSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/birthday-bot-csharp/ConnectedAccountSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /P4063/birthday-bot-csharp/ConnectedAccountSample/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/birthday-bot-csharp/ConnectedAccountSample/Web.Debug.config -------------------------------------------------------------------------------- /P4063/birthday-bot-csharp/ConnectedAccountSample/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/birthday-bot-csharp/ConnectedAccountSample/Web.Release.config -------------------------------------------------------------------------------- /P4063/birthday-bot-csharp/ConnectedAccountSample/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/birthday-bot-csharp/ConnectedAccountSample/Web.config -------------------------------------------------------------------------------- /P4063/birthday-bot-csharp/ConnectedAccountSample/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/birthday-bot-csharp/ConnectedAccountSample/default.htm -------------------------------------------------------------------------------- /P4063/birthday-bot-csharp/ConnectedAccountSample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/birthday-bot-csharp/ConnectedAccountSample/packages.config -------------------------------------------------------------------------------- /P4063/birthday-bot-node/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/birthday-bot-node/app.js -------------------------------------------------------------------------------- /P4063/birthday-bot-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/birthday-bot-node/package.json -------------------------------------------------------------------------------- /P4063/birthday-bot-node/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/P4063/birthday-bot-node/utils.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cortana-Skills-Samples-Build-2017/HEAD/README.md --------------------------------------------------------------------------------