├── .gitattributes ├── .gitignore ├── .sdl ├── .gdnbaselines ├── .gdnsuppress └── CredScanSuppressions.json ├── CSharp ├── Build │ ├── 272MSSharedLibSN2048.snk │ ├── SkypeTeams.StyleCop.targets │ ├── SkypeTeams.Tests.targets │ ├── SkypeTeams.targets │ └── Tools │ │ └── StyleCop │ │ ├── 4.7.54 │ │ ├── build │ │ │ └── StyleCop.MSBuild.Targets │ │ ├── license.txt │ │ └── tools │ │ │ ├── Community.StyleCop.CSharp.Rules.HowTo │ │ │ ├── Community.StyleCop.CSharp.Rules.dll │ │ │ ├── Community.StyleCop.CSharp.Rules.pdb │ │ │ ├── CustomDictionary.en-GB.xml │ │ │ ├── CustomDictionary.en-US.xml │ │ │ ├── CustomDictionary.xml │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Settings.StyleCop │ │ │ ├── StyleCop.CSharp.Rules.dll │ │ │ ├── StyleCop.CSharp.dll │ │ │ ├── StyleCop.dll │ │ │ ├── StyleCopSettingsEditor.exe │ │ │ ├── de-DE │ │ │ └── StyleCop.CSharp.Rules.resources.dll │ │ │ ├── en-GB │ │ │ └── StyleCop.CSharp.Rules.resources.dll │ │ │ ├── es-MX │ │ │ └── StyleCop.CSharp.Rules.resources.dll │ │ │ ├── fr-FR │ │ │ └── StyleCop.CSharp.Rules.resources.dll │ │ │ ├── mssp7en.dll │ │ │ ├── mssp7en.lex │ │ │ ├── pl-PL │ │ │ └── StyleCop.CSharp.Rules.resources.dll │ │ │ ├── pt-BR │ │ │ └── StyleCop.CSharp.Rules.resources.dll │ │ │ └── ru-RU │ │ │ └── StyleCop.CSharp.Rules.resources.dll │ │ └── Readme.txt ├── Library │ ├── Microsoft.Bot.Connector.Teams.NetFramework │ │ ├── Microsoft.Bot.Connector.Teams.NetFramework.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TenantFilterAttribute.cs │ │ ├── app.config │ │ └── packages.config │ ├── Microsoft.Bot.Connector.Teams.NetStandard │ │ ├── GlobalSuppressions.cs │ │ ├── Microsoft.Bot.Connector.Teams.NetStandard.csproj │ │ └── TenantFilterAttribute.cs │ └── Microsoft.Bot.Connector.Teams.Shared │ │ ├── ActivityExtensions.cs │ │ ├── AdaptiveBotBuilderAction.cs │ │ ├── AdditionalProperties.cs │ │ ├── App.config │ │ ├── AttachmentExtensions.cs │ │ ├── CardExtensions.cs │ │ ├── ConnectorClientExtensions.cs │ │ ├── ConversationExtensions.cs │ │ ├── ConversationUpdate │ │ ├── ChannelCreatedEvent.cs │ │ ├── ChannelDeletedEvent.cs │ │ ├── ChannelRenamedEvent.cs │ │ ├── MembersAddedEvent.cs │ │ ├── MembersRemovedEvent.cs │ │ ├── TeamEventBase.cs │ │ └── TeamRenamedEvent.cs │ │ ├── FileInfoCardEx.cs │ │ ├── Microsoft.Bot.Connector.Teams.Shared.projitems │ │ ├── Microsoft.Bot.Connector.Teams.Shared.shproj │ │ ├── RetryHelpers.cs │ │ ├── Swagger │ │ └── TeamsAPI.json │ │ ├── TeamsAPI │ │ ├── ITeamsOperations.cs │ │ ├── Models │ │ │ ├── ChannelInfo.cs │ │ │ ├── ComposeExtensionAttachment.cs │ │ │ ├── ComposeExtensionParameter.cs │ │ │ ├── ComposeExtensionQuery.cs │ │ │ ├── ComposeExtensionQueryOptions.cs │ │ │ ├── ComposeExtensionResponse.cs │ │ │ ├── ComposeExtensionResult.cs │ │ │ ├── ComposeExtensionSuggestedAction.cs │ │ │ ├── ConversationList.cs │ │ │ ├── FileConsentCard.cs │ │ │ ├── FileConsentCardResponse.cs │ │ │ ├── FileDownloadInfo.cs │ │ │ ├── FileInfoCard.cs │ │ │ ├── FileUploadInfo.cs │ │ │ ├── NotificationInfo.cs │ │ │ ├── O365ConnectorCard.cs │ │ │ ├── O365ConnectorCardActionBase.cs │ │ │ ├── O365ConnectorCardActionCard.cs │ │ │ ├── O365ConnectorCardActionQuery.cs │ │ │ ├── O365ConnectorCardDateInput.cs │ │ │ ├── O365ConnectorCardFact.cs │ │ │ ├── O365ConnectorCardHttpPOST.cs │ │ │ ├── O365ConnectorCardImage.cs │ │ │ ├── O365ConnectorCardInputBase.cs │ │ │ ├── O365ConnectorCardMultichoiceInput.cs │ │ │ ├── O365ConnectorCardMultichoiceInputChoice.cs │ │ │ ├── O365ConnectorCardOpenUri.cs │ │ │ ├── O365ConnectorCardOpenUriTarget.cs │ │ │ ├── O365ConnectorCardSection.cs │ │ │ ├── O365ConnectorCardTextInput.cs │ │ │ ├── O365ConnectorCardViewAction.cs │ │ │ ├── SigninStateVerificationQuery.cs │ │ │ ├── TaskModuleContinueResponse.cs │ │ │ ├── TaskModuleMessageResponse.cs │ │ │ ├── TaskModuleResponseBase.cs │ │ │ ├── TaskModuleResponseEnvelope.cs │ │ │ ├── TaskModuleTaskInfo.cs │ │ │ ├── TeamDetails.cs │ │ │ ├── TeamInfo.cs │ │ │ ├── TeamsChannelAccount.cs │ │ │ ├── TeamsChannelData.cs │ │ │ ├── TeamsPagedMembersResult.cs │ │ │ └── TenantInfo.cs │ │ ├── TeamsOperations.cs │ │ └── TeamsOperationsExtensions.cs │ │ ├── TeamsChannelAccountEx.cs │ │ ├── TeamsConnectorClient.cs │ │ ├── TenantFiltering.cs │ │ └── generateClient.cmd ├── Microsoft.Bot.Connector.Teams.sln ├── Packager │ ├── Microsoft.Bot.Connector.Teams.nuspec │ ├── Packager.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ ├── nuget.exe │ └── packages.config ├── RootMarker ├── Samples │ ├── Microsoft.Bot.Connector.Teams.SampleBot.ASPCore │ │ ├── Controllers │ │ │ └── MessagesController.cs │ │ ├── Microsoft.Bot.Connector.Teams.SampleBot.ASPCore.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── Microsoft.Bot.Connector.Teams.SampleBot.Shared │ │ ├── CipherHelper.cs │ │ ├── MessageProcessor.cs │ │ ├── Microsoft.Bot.Connector.Teams.SampleBot.Shared.projitems │ │ ├── Microsoft.Bot.Connector.Teams.SampleBot.Shared.shproj │ │ └── SimpleFBAuthController.cs │ └── Microsoft.Bot.Connector.Teams.SampleBot │ │ ├── App_Start │ │ └── WebApiConfig.cs │ │ ├── Controllers │ │ └── MessagesController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Microsoft.Bot.Connector.Teams.SampleBot.NetFramework.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── packages.config ├── Settings.StyleCop └── Tests │ ├── .runsettings │ ├── Microsoft.Bot.Connector.Teams.Tests.NetFramework │ ├── Microsoft.Bot.Connector.Teams.Tests.NetFramework.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TenantFilteringTests.cs │ ├── app.config │ └── packages.config │ └── Microsoft.Bot.Connector.Teams.Tests.Shared │ ├── ActivityExtensionsTests.cs │ ├── CardTests.AdaptiveCard.cs │ ├── CardTests.FileCards.cs │ ├── CardTests.cs │ ├── ChannelDataTests.cs │ ├── ComposeExtensionTests.cs │ ├── ConnectorExtensionTests.cs │ ├── ConversationUpdateTests.cs │ ├── Jsons │ ├── SampleActivity2AtMentions.json │ ├── SampleActivityAtMention.json │ ├── SampleActivityChannelCreated.json │ ├── SampleActivityChannelDeleted.json │ ├── SampleActivityChannelRenamed.json │ ├── SampleActivityComposeExtension.json │ ├── SampleActivityConversationUpdateWithAADObjectId.json │ ├── SampleActivityInvoke.json │ ├── SampleActivityMembersAdded.json │ ├── SampleActivityMembersRemoved.json │ ├── SampleActivityMessageWithAADObjectId.json │ ├── SampleActivityNoMentions.json │ ├── SampleActivitySigninAuthStateVerification.json │ ├── SampleActivityTeamRenamed.json │ ├── SampleAdaptiveCard.json │ ├── SampleFileConsentCardResponseInvoke.json │ ├── SampleFileDownloadInfoAttachment.json │ ├── SampleResponseGetTeamsConversationMembers.json │ ├── SampleResponseGetTeamsPaginatedConversationMembers.json │ ├── SampleResponseTeamsGetConversationMember.json │ ├── SampleTaskModuleAdaptiveCard.json │ ├── SampleTaskModuleAdaptiveCardPayload.json │ ├── SampleTaskModuleCustomFormPayload.json │ └── SampleTaskModuleMessagePayload.json │ ├── MentionTests.cs │ ├── Microsoft.Bot.Connector.Teams.Tests.Shared.projitems │ ├── Microsoft.Bot.Connector.Teams.Tests.Shared.shproj │ ├── RetryHelperTests.cs │ ├── SigninAuthTests.cs │ ├── TaskModuleTests.cs │ ├── TeamsAPITests.FetchChannelList.cs │ ├── TeamsAPITests.FetchTeamDetails.cs │ ├── TeamsChannelAccountTests.cs │ ├── TestDelegatingHandler.cs │ └── app.config ├── LICENSE ├── Node ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── samples │ ├── app.js │ ├── app.ts │ ├── simpleFBAuth.js │ ├── simpleFBAuth.ts │ └── typings.json ├── src │ ├── ConversationUpdate │ │ ├── channelCreatedEvent.js │ │ ├── channelDeletedEvent.js │ │ ├── channelRenamedEvent.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── membersAddedEvent.js │ │ ├── membersRemovedEvent.js │ │ ├── teamEventBase.js │ │ └── teamRenamedEvent.js │ ├── RemoteQuery │ │ ├── RestClient.d.ts │ │ ├── RestClient.js │ │ └── teams.js │ ├── TeamsChatConnector.ts │ ├── TeamsMessage.ts │ ├── TeamsMiddleware.ts │ ├── botbuilder-teams.d.ts │ ├── botbuilder-teams.ts │ ├── models │ │ ├── AdaptiveCard.ts │ │ ├── FileConsentCard.ts │ │ ├── FileConsentCardResponse.ts │ │ ├── FileDownloadInfo.ts │ │ ├── FileInfoCard.ts │ │ ├── ListCard.ts │ │ ├── TaskModuleAction.ts │ │ ├── TaskModuleResponse.ts │ │ ├── channelAccount.js │ │ ├── channelInfo.js │ │ ├── composeExtensionResponse.ts │ │ ├── conversationList.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── o365ConnectorCard.ts │ │ ├── teamInfo.js │ │ ├── teamsChannelAccountsResult.js │ │ ├── teamsChannelData.js │ │ └── tenantInfo.js │ └── tsconfig.json └── test │ ├── AdaptiveCard.js │ ├── ConversationUpdate.js │ ├── FileConsentCard.js │ ├── FileInfoCard.js │ ├── ListCard.js │ ├── O365ConnectorCard.js │ ├── TaskModule.js │ ├── TeamsChatConnector.js │ └── TeamsMessage.js └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/.gitignore -------------------------------------------------------------------------------- /.sdl/.gdnbaselines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/.sdl/.gdnbaselines -------------------------------------------------------------------------------- /.sdl/.gdnsuppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/.sdl/.gdnsuppress -------------------------------------------------------------------------------- /.sdl/CredScanSuppressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/.sdl/CredScanSuppressions.json -------------------------------------------------------------------------------- /CSharp/Build/272MSSharedLibSN2048.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/272MSSharedLibSN2048.snk -------------------------------------------------------------------------------- /CSharp/Build/SkypeTeams.StyleCop.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/SkypeTeams.StyleCop.targets -------------------------------------------------------------------------------- /CSharp/Build/SkypeTeams.Tests.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/SkypeTeams.Tests.targets -------------------------------------------------------------------------------- /CSharp/Build/SkypeTeams.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/SkypeTeams.targets -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/build/StyleCop.MSBuild.Targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/build/StyleCop.MSBuild.Targets -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/license.txt -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/Community.StyleCop.CSharp.Rules.HowTo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/Community.StyleCop.CSharp.Rules.HowTo -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/Community.StyleCop.CSharp.Rules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/Community.StyleCop.CSharp.Rules.dll -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/Community.StyleCop.CSharp.Rules.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/Community.StyleCop.CSharp.Rules.pdb -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/CustomDictionary.en-GB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/CustomDictionary.en-GB.xml -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/CustomDictionary.en-US.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/CustomDictionary.en-US.xml -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/CustomDictionary.xml -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/Settings.StyleCop -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/StyleCop.CSharp.Rules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/StyleCop.CSharp.Rules.dll -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/StyleCop.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/StyleCop.CSharp.dll -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/StyleCop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/StyleCop.dll -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/StyleCopSettingsEditor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/StyleCopSettingsEditor.exe -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/de-DE/StyleCop.CSharp.Rules.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/de-DE/StyleCop.CSharp.Rules.resources.dll -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/en-GB/StyleCop.CSharp.Rules.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/en-GB/StyleCop.CSharp.Rules.resources.dll -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/es-MX/StyleCop.CSharp.Rules.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/es-MX/StyleCop.CSharp.Rules.resources.dll -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/fr-FR/StyleCop.CSharp.Rules.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/fr-FR/StyleCop.CSharp.Rules.resources.dll -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/mssp7en.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/mssp7en.dll -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/mssp7en.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/mssp7en.lex -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/pl-PL/StyleCop.CSharp.Rules.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/pl-PL/StyleCop.CSharp.Rules.resources.dll -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/pt-BR/StyleCop.CSharp.Rules.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/pt-BR/StyleCop.CSharp.Rules.resources.dll -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/4.7.54/tools/ru-RU/StyleCop.CSharp.Rules.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/4.7.54/tools/ru-RU/StyleCop.CSharp.Rules.resources.dll -------------------------------------------------------------------------------- /CSharp/Build/Tools/StyleCop/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Build/Tools/StyleCop/Readme.txt -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.NetFramework/Microsoft.Bot.Connector.Teams.NetFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.NetFramework/Microsoft.Bot.Connector.Teams.NetFramework.csproj -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.NetFramework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.NetFramework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.NetFramework/TenantFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.NetFramework/TenantFilterAttribute.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.NetFramework/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.NetFramework/app.config -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.NetFramework/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.NetFramework/packages.config -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.NetStandard/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.NetStandard/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.NetStandard/Microsoft.Bot.Connector.Teams.NetStandard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.NetStandard/Microsoft.Bot.Connector.Teams.NetStandard.csproj -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.NetStandard/TenantFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.NetStandard/TenantFilterAttribute.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ActivityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ActivityExtensions.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/AdaptiveBotBuilderAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/AdaptiveBotBuilderAction.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/AdditionalProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/AdditionalProperties.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/App.config -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/AttachmentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/AttachmentExtensions.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/CardExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/CardExtensions.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConnectorClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConnectorClientExtensions.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConversationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConversationExtensions.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConversationUpdate/ChannelCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConversationUpdate/ChannelCreatedEvent.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConversationUpdate/ChannelDeletedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConversationUpdate/ChannelDeletedEvent.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConversationUpdate/ChannelRenamedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConversationUpdate/ChannelRenamedEvent.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConversationUpdate/MembersAddedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConversationUpdate/MembersAddedEvent.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConversationUpdate/MembersRemovedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConversationUpdate/MembersRemovedEvent.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConversationUpdate/TeamEventBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConversationUpdate/TeamEventBase.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConversationUpdate/TeamRenamedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/ConversationUpdate/TeamRenamedEvent.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/FileInfoCardEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/FileInfoCardEx.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/Microsoft.Bot.Connector.Teams.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/Microsoft.Bot.Connector.Teams.Shared.projitems -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/Microsoft.Bot.Connector.Teams.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/Microsoft.Bot.Connector.Teams.Shared.shproj -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/RetryHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/RetryHelpers.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/Swagger/TeamsAPI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/Swagger/TeamsAPI.json -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/ITeamsOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/ITeamsOperations.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ChannelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ChannelInfo.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ComposeExtensionAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ComposeExtensionAttachment.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ComposeExtensionParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ComposeExtensionParameter.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ComposeExtensionQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ComposeExtensionQuery.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ComposeExtensionQueryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ComposeExtensionQueryOptions.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ComposeExtensionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ComposeExtensionResponse.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ComposeExtensionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ComposeExtensionResult.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ComposeExtensionSuggestedAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ComposeExtensionSuggestedAction.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ConversationList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/ConversationList.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/FileConsentCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/FileConsentCard.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/FileConsentCardResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/FileConsentCardResponse.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/FileDownloadInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/FileDownloadInfo.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/FileInfoCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/FileInfoCard.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/FileUploadInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/FileUploadInfo.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/NotificationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/NotificationInfo.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCard.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardActionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardActionBase.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardActionCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardActionCard.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardActionQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardActionQuery.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardDateInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardDateInput.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardFact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardFact.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardHttpPOST.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardHttpPOST.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardImage.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardInputBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardInputBase.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardMultichoiceInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardMultichoiceInput.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardMultichoiceInputChoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardMultichoiceInputChoice.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardOpenUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardOpenUri.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardOpenUriTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardOpenUriTarget.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardSection.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardTextInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardTextInput.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardViewAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/O365ConnectorCardViewAction.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/SigninStateVerificationQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/SigninStateVerificationQuery.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TaskModuleContinueResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TaskModuleContinueResponse.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TaskModuleMessageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TaskModuleMessageResponse.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TaskModuleResponseBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TaskModuleResponseBase.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TaskModuleResponseEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TaskModuleResponseEnvelope.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TaskModuleTaskInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TaskModuleTaskInfo.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TeamDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TeamDetails.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TeamInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TeamInfo.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TeamsChannelAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TeamsChannelAccount.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TeamsChannelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TeamsChannelData.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TeamsPagedMembersResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TeamsPagedMembersResult.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TenantInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/Models/TenantInfo.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/TeamsOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/TeamsOperations.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/TeamsOperationsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsAPI/TeamsOperationsExtensions.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsChannelAccountEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsChannelAccountEx.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsConnectorClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TeamsConnectorClient.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TenantFiltering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/TenantFiltering.cs -------------------------------------------------------------------------------- /CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/generateClient.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Library/Microsoft.Bot.Connector.Teams.Shared/generateClient.cmd -------------------------------------------------------------------------------- /CSharp/Microsoft.Bot.Connector.Teams.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Microsoft.Bot.Connector.Teams.sln -------------------------------------------------------------------------------- /CSharp/Packager/Microsoft.Bot.Connector.Teams.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Packager/Microsoft.Bot.Connector.Teams.nuspec -------------------------------------------------------------------------------- /CSharp/Packager/Packager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Packager/Packager.csproj -------------------------------------------------------------------------------- /CSharp/Packager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Packager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/Packager/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Packager/app.config -------------------------------------------------------------------------------- /CSharp/Packager/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Packager/nuget.exe -------------------------------------------------------------------------------- /CSharp/Packager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Packager/packages.config -------------------------------------------------------------------------------- /CSharp/RootMarker: -------------------------------------------------------------------------------- 1 | DO NOT DELETE THIS FILE. USED FOR BUILD. -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.ASPCore/Controllers/MessagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.ASPCore/Controllers/MessagesController.cs -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.ASPCore/Microsoft.Bot.Connector.Teams.SampleBot.ASPCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.ASPCore/Microsoft.Bot.Connector.Teams.SampleBot.ASPCore.csproj -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.ASPCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.ASPCore/Program.cs -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.ASPCore/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.ASPCore/Properties/launchSettings.json -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.ASPCore/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.ASPCore/Startup.cs -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.ASPCore/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.ASPCore/appsettings.Development.json -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.ASPCore/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.ASPCore/appsettings.json -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.Shared/CipherHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.Shared/CipherHelper.cs -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.Shared/MessageProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.Shared/MessageProcessor.cs -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.Shared/Microsoft.Bot.Connector.Teams.SampleBot.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.Shared/Microsoft.Bot.Connector.Teams.SampleBot.Shared.projitems -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.Shared/Microsoft.Bot.Connector.Teams.SampleBot.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.Shared/Microsoft.Bot.Connector.Teams.SampleBot.Shared.shproj -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.Shared/SimpleFBAuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot.Shared/SimpleFBAuthController.cs -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/Controllers/MessagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/Controllers/MessagesController.cs -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/Global.asax -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/Global.asax.cs -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/Microsoft.Bot.Connector.Teams.SampleBot.NetFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/Microsoft.Bot.Connector.Teams.SampleBot.NetFramework.csproj -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/Web.Debug.config -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/Web.Release.config -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/Web.config -------------------------------------------------------------------------------- /CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Samples/Microsoft.Bot.Connector.Teams.SampleBot/packages.config -------------------------------------------------------------------------------- /CSharp/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Settings.StyleCop -------------------------------------------------------------------------------- /CSharp/Tests/.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/.runsettings -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.NetFramework/Microsoft.Bot.Connector.Teams.Tests.NetFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.NetFramework/Microsoft.Bot.Connector.Teams.Tests.NetFramework.csproj -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.NetFramework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.NetFramework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.NetFramework/TenantFilteringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.NetFramework/TenantFilteringTests.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.NetFramework/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.NetFramework/app.config -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.NetFramework/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.NetFramework/packages.config -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/ActivityExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/ActivityExtensionsTests.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/CardTests.AdaptiveCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/CardTests.AdaptiveCard.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/CardTests.FileCards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/CardTests.FileCards.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/CardTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/CardTests.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/ChannelDataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/ChannelDataTests.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/ComposeExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/ComposeExtensionTests.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/ConnectorExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/ConnectorExtensionTests.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/ConversationUpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/ConversationUpdateTests.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivity2AtMentions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivity2AtMentions.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityAtMention.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityAtMention.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityChannelCreated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityChannelCreated.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityChannelDeleted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityChannelDeleted.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityChannelRenamed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityChannelRenamed.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityComposeExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityComposeExtension.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityConversationUpdateWithAADObjectId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityConversationUpdateWithAADObjectId.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityInvoke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityInvoke.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityMembersAdded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityMembersAdded.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityMembersRemoved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityMembersRemoved.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityMessageWithAADObjectId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityMessageWithAADObjectId.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityNoMentions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityNoMentions.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivitySigninAuthStateVerification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivitySigninAuthStateVerification.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityTeamRenamed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleActivityTeamRenamed.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleAdaptiveCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleAdaptiveCard.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleFileConsentCardResponseInvoke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleFileConsentCardResponseInvoke.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleFileDownloadInfoAttachment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleFileDownloadInfoAttachment.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleResponseGetTeamsConversationMembers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleResponseGetTeamsConversationMembers.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleResponseGetTeamsPaginatedConversationMembers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleResponseGetTeamsPaginatedConversationMembers.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleResponseTeamsGetConversationMember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleResponseTeamsGetConversationMember.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleTaskModuleAdaptiveCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleTaskModuleAdaptiveCard.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleTaskModuleAdaptiveCardPayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleTaskModuleAdaptiveCardPayload.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleTaskModuleCustomFormPayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleTaskModuleCustomFormPayload.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleTaskModuleMessagePayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Jsons/SampleTaskModuleMessagePayload.json -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/MentionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/MentionTests.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Microsoft.Bot.Connector.Teams.Tests.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Microsoft.Bot.Connector.Teams.Tests.Shared.projitems -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Microsoft.Bot.Connector.Teams.Tests.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/Microsoft.Bot.Connector.Teams.Tests.Shared.shproj -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/RetryHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/RetryHelperTests.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/SigninAuthTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/SigninAuthTests.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/TaskModuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/TaskModuleTests.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/TeamsAPITests.FetchChannelList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/TeamsAPITests.FetchChannelList.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/TeamsAPITests.FetchTeamDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/TeamsAPITests.FetchTeamDetails.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/TeamsChannelAccountTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/TeamsChannelAccountTests.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/TestDelegatingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/TestDelegatingHandler.cs -------------------------------------------------------------------------------- /CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/CSharp/Tests/Microsoft.Bot.Connector.Teams.Tests.Shared/app.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/LICENSE -------------------------------------------------------------------------------- /Node/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/.npmignore -------------------------------------------------------------------------------- /Node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/README.md -------------------------------------------------------------------------------- /Node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/package-lock.json -------------------------------------------------------------------------------- /Node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/package.json -------------------------------------------------------------------------------- /Node/samples/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/samples/app.js -------------------------------------------------------------------------------- /Node/samples/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/samples/app.ts -------------------------------------------------------------------------------- /Node/samples/simpleFBAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/samples/simpleFBAuth.js -------------------------------------------------------------------------------- /Node/samples/simpleFBAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/samples/simpleFBAuth.ts -------------------------------------------------------------------------------- /Node/samples/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/samples/typings.json -------------------------------------------------------------------------------- /Node/src/ConversationUpdate/channelCreatedEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/ConversationUpdate/channelCreatedEvent.js -------------------------------------------------------------------------------- /Node/src/ConversationUpdate/channelDeletedEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/ConversationUpdate/channelDeletedEvent.js -------------------------------------------------------------------------------- /Node/src/ConversationUpdate/channelRenamedEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/ConversationUpdate/channelRenamedEvent.js -------------------------------------------------------------------------------- /Node/src/ConversationUpdate/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/ConversationUpdate/index.d.ts -------------------------------------------------------------------------------- /Node/src/ConversationUpdate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/ConversationUpdate/index.js -------------------------------------------------------------------------------- /Node/src/ConversationUpdate/membersAddedEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/ConversationUpdate/membersAddedEvent.js -------------------------------------------------------------------------------- /Node/src/ConversationUpdate/membersRemovedEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/ConversationUpdate/membersRemovedEvent.js -------------------------------------------------------------------------------- /Node/src/ConversationUpdate/teamEventBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/ConversationUpdate/teamEventBase.js -------------------------------------------------------------------------------- /Node/src/ConversationUpdate/teamRenamedEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/ConversationUpdate/teamRenamedEvent.js -------------------------------------------------------------------------------- /Node/src/RemoteQuery/RestClient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/RemoteQuery/RestClient.d.ts -------------------------------------------------------------------------------- /Node/src/RemoteQuery/RestClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/RemoteQuery/RestClient.js -------------------------------------------------------------------------------- /Node/src/RemoteQuery/teams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/RemoteQuery/teams.js -------------------------------------------------------------------------------- /Node/src/TeamsChatConnector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/TeamsChatConnector.ts -------------------------------------------------------------------------------- /Node/src/TeamsMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/TeamsMessage.ts -------------------------------------------------------------------------------- /Node/src/TeamsMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/TeamsMiddleware.ts -------------------------------------------------------------------------------- /Node/src/botbuilder-teams.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/botbuilder-teams.d.ts -------------------------------------------------------------------------------- /Node/src/botbuilder-teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/botbuilder-teams.ts -------------------------------------------------------------------------------- /Node/src/models/AdaptiveCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/AdaptiveCard.ts -------------------------------------------------------------------------------- /Node/src/models/FileConsentCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/FileConsentCard.ts -------------------------------------------------------------------------------- /Node/src/models/FileConsentCardResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/FileConsentCardResponse.ts -------------------------------------------------------------------------------- /Node/src/models/FileDownloadInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/FileDownloadInfo.ts -------------------------------------------------------------------------------- /Node/src/models/FileInfoCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/FileInfoCard.ts -------------------------------------------------------------------------------- /Node/src/models/ListCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/ListCard.ts -------------------------------------------------------------------------------- /Node/src/models/TaskModuleAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/TaskModuleAction.ts -------------------------------------------------------------------------------- /Node/src/models/TaskModuleResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/TaskModuleResponse.ts -------------------------------------------------------------------------------- /Node/src/models/channelAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/channelAccount.js -------------------------------------------------------------------------------- /Node/src/models/channelInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/channelInfo.js -------------------------------------------------------------------------------- /Node/src/models/composeExtensionResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/composeExtensionResponse.ts -------------------------------------------------------------------------------- /Node/src/models/conversationList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/conversationList.js -------------------------------------------------------------------------------- /Node/src/models/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/index.d.ts -------------------------------------------------------------------------------- /Node/src/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/index.js -------------------------------------------------------------------------------- /Node/src/models/o365ConnectorCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/o365ConnectorCard.ts -------------------------------------------------------------------------------- /Node/src/models/teamInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/teamInfo.js -------------------------------------------------------------------------------- /Node/src/models/teamsChannelAccountsResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/teamsChannelAccountsResult.js -------------------------------------------------------------------------------- /Node/src/models/teamsChannelData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/teamsChannelData.js -------------------------------------------------------------------------------- /Node/src/models/tenantInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/models/tenantInfo.js -------------------------------------------------------------------------------- /Node/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/src/tsconfig.json -------------------------------------------------------------------------------- /Node/test/AdaptiveCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/test/AdaptiveCard.js -------------------------------------------------------------------------------- /Node/test/ConversationUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/test/ConversationUpdate.js -------------------------------------------------------------------------------- /Node/test/FileConsentCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/test/FileConsentCard.js -------------------------------------------------------------------------------- /Node/test/FileInfoCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/test/FileInfoCard.js -------------------------------------------------------------------------------- /Node/test/ListCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/test/ListCard.js -------------------------------------------------------------------------------- /Node/test/O365ConnectorCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/test/O365ConnectorCard.js -------------------------------------------------------------------------------- /Node/test/TaskModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/test/TaskModule.js -------------------------------------------------------------------------------- /Node/test/TeamsChatConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/test/TeamsChatConnector.js -------------------------------------------------------------------------------- /Node/test/TeamsMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/Node/test/TeamsMessage.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/BotBuilder-MicrosoftTeams/HEAD/README.md --------------------------------------------------------------------------------