├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── ExcelBot.sln ├── ExcelBot ├── App_Start │ └── WebApiConfig.cs ├── ApplicationInsights.config ├── Constants │ └── Constants.cs ├── Controllers │ ├── ChartController.cs │ └── MessagesController.cs ├── Dialogs │ ├── CellsDialog.cs │ ├── ChartsDialog.cs │ ├── DialogExtensions.cs │ ├── ExcelBotDialog.cs │ ├── GraphDialog.cs │ ├── NamedItemsDialog.cs │ ├── OpenWorkbookDialog.cs │ ├── TablesDialog.cs │ ├── WorkbooksDialog.cs │ └── WorksheetsDialog.cs ├── ExcelBot.csproj ├── ExcelBot.csproj.user ├── Forms │ ├── OpenWorkbookForm.cs │ └── SelectWorksheetForm.cs ├── Global.asax ├── Global.asax.cs ├── Helpers │ ├── BotStateHelper.cs │ ├── ExcelHelper.cs │ ├── IndexOf.cs │ ├── LuisHelper.cs │ ├── RequestHelper.cs │ ├── ServicesHelper.cs │ └── TelemetryHelper.cs ├── Luis │ └── ExcelBot.json ├── Model │ ├── ChartAttachment.cs │ ├── ObjectType.cs │ └── UserData.cs ├── PrivateSettings.config.example ├── Properties │ └── AssemblyInfo.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── Workers │ ├── CellWorker.cs │ ├── ChartsWorker.cs │ ├── NamedItemsWorker.cs │ ├── TablesWorker.cs │ ├── WorkbookWorker.cs │ └── WorksheetWorker.cs ├── chat.htm ├── default.htm ├── loggedin.htm └── packages.config ├── LICENSE ├── README-localized ├── README-es-es.md ├── README-fr-fr.md ├── README-ja-jp.md ├── README-pt-br.md ├── README-ru-ru.md └── README-zh-cn.md ├── README.md └── readme-images ├── aad-application-id.PNG ├── aad-copy-client-secret.png ├── aad-new-client-secret.png ├── aad-portal-app-registrations.png ├── aad-register-an-app.PNG ├── appID.png ├── create.png ├── idandkey.png ├── luisimport.png └── testpublish.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ExcelBot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot.sln -------------------------------------------------------------------------------- /ExcelBot/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /ExcelBot/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/ApplicationInsights.config -------------------------------------------------------------------------------- /ExcelBot/Constants/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Constants/Constants.cs -------------------------------------------------------------------------------- /ExcelBot/Controllers/ChartController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Controllers/ChartController.cs -------------------------------------------------------------------------------- /ExcelBot/Controllers/MessagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Controllers/MessagesController.cs -------------------------------------------------------------------------------- /ExcelBot/Dialogs/CellsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Dialogs/CellsDialog.cs -------------------------------------------------------------------------------- /ExcelBot/Dialogs/ChartsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Dialogs/ChartsDialog.cs -------------------------------------------------------------------------------- /ExcelBot/Dialogs/DialogExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Dialogs/DialogExtensions.cs -------------------------------------------------------------------------------- /ExcelBot/Dialogs/ExcelBotDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Dialogs/ExcelBotDialog.cs -------------------------------------------------------------------------------- /ExcelBot/Dialogs/GraphDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Dialogs/GraphDialog.cs -------------------------------------------------------------------------------- /ExcelBot/Dialogs/NamedItemsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Dialogs/NamedItemsDialog.cs -------------------------------------------------------------------------------- /ExcelBot/Dialogs/OpenWorkbookDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Dialogs/OpenWorkbookDialog.cs -------------------------------------------------------------------------------- /ExcelBot/Dialogs/TablesDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Dialogs/TablesDialog.cs -------------------------------------------------------------------------------- /ExcelBot/Dialogs/WorkbooksDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Dialogs/WorkbooksDialog.cs -------------------------------------------------------------------------------- /ExcelBot/Dialogs/WorksheetsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Dialogs/WorksheetsDialog.cs -------------------------------------------------------------------------------- /ExcelBot/ExcelBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/ExcelBot.csproj -------------------------------------------------------------------------------- /ExcelBot/ExcelBot.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/ExcelBot.csproj.user -------------------------------------------------------------------------------- /ExcelBot/Forms/OpenWorkbookForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Forms/OpenWorkbookForm.cs -------------------------------------------------------------------------------- /ExcelBot/Forms/SelectWorksheetForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Forms/SelectWorksheetForm.cs -------------------------------------------------------------------------------- /ExcelBot/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Global.asax -------------------------------------------------------------------------------- /ExcelBot/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Global.asax.cs -------------------------------------------------------------------------------- /ExcelBot/Helpers/BotStateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Helpers/BotStateHelper.cs -------------------------------------------------------------------------------- /ExcelBot/Helpers/ExcelHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Helpers/ExcelHelper.cs -------------------------------------------------------------------------------- /ExcelBot/Helpers/IndexOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Helpers/IndexOf.cs -------------------------------------------------------------------------------- /ExcelBot/Helpers/LuisHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Helpers/LuisHelper.cs -------------------------------------------------------------------------------- /ExcelBot/Helpers/RequestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Helpers/RequestHelper.cs -------------------------------------------------------------------------------- /ExcelBot/Helpers/ServicesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Helpers/ServicesHelper.cs -------------------------------------------------------------------------------- /ExcelBot/Helpers/TelemetryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Helpers/TelemetryHelper.cs -------------------------------------------------------------------------------- /ExcelBot/Luis/ExcelBot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Luis/ExcelBot.json -------------------------------------------------------------------------------- /ExcelBot/Model/ChartAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Model/ChartAttachment.cs -------------------------------------------------------------------------------- /ExcelBot/Model/ObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Model/ObjectType.cs -------------------------------------------------------------------------------- /ExcelBot/Model/UserData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Model/UserData.cs -------------------------------------------------------------------------------- /ExcelBot/PrivateSettings.config.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/PrivateSettings.config.example -------------------------------------------------------------------------------- /ExcelBot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExcelBot/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Web.Debug.config -------------------------------------------------------------------------------- /ExcelBot/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Web.Release.config -------------------------------------------------------------------------------- /ExcelBot/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Web.config -------------------------------------------------------------------------------- /ExcelBot/Workers/CellWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Workers/CellWorker.cs -------------------------------------------------------------------------------- /ExcelBot/Workers/ChartsWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Workers/ChartsWorker.cs -------------------------------------------------------------------------------- /ExcelBot/Workers/NamedItemsWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Workers/NamedItemsWorker.cs -------------------------------------------------------------------------------- /ExcelBot/Workers/TablesWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Workers/TablesWorker.cs -------------------------------------------------------------------------------- /ExcelBot/Workers/WorkbookWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Workers/WorkbookWorker.cs -------------------------------------------------------------------------------- /ExcelBot/Workers/WorksheetWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/Workers/WorksheetWorker.cs -------------------------------------------------------------------------------- /ExcelBot/chat.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/chat.htm -------------------------------------------------------------------------------- /ExcelBot/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/default.htm -------------------------------------------------------------------------------- /ExcelBot/loggedin.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/loggedin.htm -------------------------------------------------------------------------------- /ExcelBot/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/ExcelBot/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README-localized/README-es-es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/README-localized/README-es-es.md -------------------------------------------------------------------------------- /README-localized/README-fr-fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/README-localized/README-fr-fr.md -------------------------------------------------------------------------------- /README-localized/README-ja-jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/README-localized/README-ja-jp.md -------------------------------------------------------------------------------- /README-localized/README-pt-br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/README-localized/README-pt-br.md -------------------------------------------------------------------------------- /README-localized/README-ru-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/README-localized/README-ru-ru.md -------------------------------------------------------------------------------- /README-localized/README-zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/README-localized/README-zh-cn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/README.md -------------------------------------------------------------------------------- /readme-images/aad-application-id.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/readme-images/aad-application-id.PNG -------------------------------------------------------------------------------- /readme-images/aad-copy-client-secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/readme-images/aad-copy-client-secret.png -------------------------------------------------------------------------------- /readme-images/aad-new-client-secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/readme-images/aad-new-client-secret.png -------------------------------------------------------------------------------- /readme-images/aad-portal-app-registrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/readme-images/aad-portal-app-registrations.png -------------------------------------------------------------------------------- /readme-images/aad-register-an-app.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/readme-images/aad-register-an-app.PNG -------------------------------------------------------------------------------- /readme-images/appID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/readme-images/appID.png -------------------------------------------------------------------------------- /readme-images/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/readme-images/create.png -------------------------------------------------------------------------------- /readme-images/idandkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/readme-images/idandkey.png -------------------------------------------------------------------------------- /readme-images/luisimport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/readme-images/luisimport.png -------------------------------------------------------------------------------- /readme-images/testpublish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/botframework-csharp-excelbot-rest-sample/HEAD/readme-images/testpublish.png --------------------------------------------------------------------------------