├── Bot ├── .gitattributes ├── .gitignore ├── Debugger │ ├── App.config │ ├── Debugger.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── VSTF_RD_Bot.sln └── VSTF_RD_Bot │ ├── App_Start │ └── WebApiConfig.cs │ ├── Constants │ └── Constants.cs │ ├── Controllers │ ├── LogicAppController.cs │ ├── LoginController.cs │ └── MessagesController.cs │ ├── DIalog │ └── VSTFDialog.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ ├── Command.cs │ ├── QueryItem.cs │ ├── TFSItem.cs │ └── TFSResponse.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── VSTF_RD_Bot.csproj │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── default.htm │ ├── loggedin.htm │ └── packages.config ├── LICENSE ├── Logic_Apps ├── Bot_Create_VSTF.json ├── Bot_ExecuteCommand_VSTF.json └── Bot_Search_VSTF.json ├── README.md └── VSTS_API ├── .gitattributes ├── .gitignore ├── VSTS_API.Tests ├── Properties │ └── AssemblyInfo.cs ├── UnitTest1.cs ├── VSTS_API.Tests.csproj ├── app.config └── packages.config ├── VSTS_API.sln └── VSTS_API ├── App_Start ├── SwaggerConfig.cs ├── Utils.cs └── WebApiConfig.cs ├── Controllers ├── CreateItemController.cs ├── ExecuteQueryController.cs └── SearchItemController.cs ├── Global.asax ├── Global.asax.cs ├── Models └── SimpleWorkItem.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── VSTS_API.csproj ├── Web.Debug.config ├── Web.Release.config ├── Web.config └── packages.config /Bot/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/.gitattributes -------------------------------------------------------------------------------- /Bot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/.gitignore -------------------------------------------------------------------------------- /Bot/Debugger/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/Debugger/App.config -------------------------------------------------------------------------------- /Bot/Debugger/Debugger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/Debugger/Debugger.csproj -------------------------------------------------------------------------------- /Bot/Debugger/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/Debugger/Program.cs -------------------------------------------------------------------------------- /Bot/Debugger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/Debugger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Bot/Debugger/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/Debugger/packages.config -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot.sln -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/Constants/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/Constants/Constants.cs -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/Controllers/LogicAppController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/Controllers/LogicAppController.cs -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/Controllers/LoginController.cs -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/Controllers/MessagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/Controllers/MessagesController.cs -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/DIalog/VSTFDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/DIalog/VSTFDialog.cs -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/Global.asax -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/Global.asax.cs -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/Models/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/Models/Command.cs -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/Models/QueryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/Models/QueryItem.cs -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/Models/TFSItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/Models/TFSItem.cs -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/Models/TFSResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/Models/TFSResponse.cs -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/VSTF_RD_Bot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/VSTF_RD_Bot.csproj -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/Web.Debug.config -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/Web.Release.config -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/Web.config -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/default.htm -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/loggedin.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/loggedin.htm -------------------------------------------------------------------------------- /Bot/VSTF_RD_Bot/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Bot/VSTF_RD_Bot/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/LICENSE -------------------------------------------------------------------------------- /Logic_Apps/Bot_Create_VSTF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Logic_Apps/Bot_Create_VSTF.json -------------------------------------------------------------------------------- /Logic_Apps/Bot_ExecuteCommand_VSTF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Logic_Apps/Bot_ExecuteCommand_VSTF.json -------------------------------------------------------------------------------- /Logic_Apps/Bot_Search_VSTF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/Logic_Apps/Bot_Search_VSTF.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/README.md -------------------------------------------------------------------------------- /VSTS_API/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/.gitattributes -------------------------------------------------------------------------------- /VSTS_API/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/.gitignore -------------------------------------------------------------------------------- /VSTS_API/VSTS_API.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSTS_API/VSTS_API.Tests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API.Tests/UnitTest1.cs -------------------------------------------------------------------------------- /VSTS_API/VSTS_API.Tests/VSTS_API.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API.Tests/VSTS_API.Tests.csproj -------------------------------------------------------------------------------- /VSTS_API/VSTS_API.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API.Tests/app.config -------------------------------------------------------------------------------- /VSTS_API/VSTS_API.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API.Tests/packages.config -------------------------------------------------------------------------------- /VSTS_API/VSTS_API.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API.sln -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/App_Start/SwaggerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/App_Start/SwaggerConfig.cs -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/App_Start/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/App_Start/Utils.cs -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/Controllers/CreateItemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/Controllers/CreateItemController.cs -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/Controllers/ExecuteQueryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/Controllers/ExecuteQueryController.cs -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/Controllers/SearchItemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/Controllers/SearchItemController.cs -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/Global.asax -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/Global.asax.cs -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/Models/SimpleWorkItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/Models/SimpleWorkItem.cs -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/Properties/Resources.resx -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/VSTS_API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/VSTS_API.csproj -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/Web.Debug.config -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/Web.Release.config -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/Web.config -------------------------------------------------------------------------------- /VSTS_API/VSTS_API/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffhollan/BotFrameworkSample/HEAD/VSTS_API/VSTS_API/packages.config --------------------------------------------------------------------------------