├── .github
└── ISSUE_TEMPLATE
│ └── project.yml
├── LICENSE
├── README.md
├── SECURITY.md
├── SETUP.md
├── TOP-SCENARIOS.md
└── templates
├── vs-dotnet
├── README.md
├── command-bot
│ ├── .vs
│ │ ├── ProjectEvaluation
│ │ │ ├── command-bot.metadata.v6.1
│ │ │ └── command-bot.projects.v6.1
│ │ └── command-bot
│ │ │ └── v17
│ │ │ └── .suo
│ ├── command-bot.sln
│ └── command-bot
│ │ ├── .fx
│ │ └── configs
│ │ │ ├── azure.parameters.dev.json
│ │ │ ├── config.dev.json
│ │ │ └── projectSettings.json
│ │ ├── .gitignore
│ │ ├── AdapterWithErrorHandler.cs
│ │ ├── Commands
│ │ └── HelloWorldCommandHandler.cs
│ │ ├── Controllers
│ │ └── BotController.cs
│ │ ├── GettingStarted.txt
│ │ ├── Models
│ │ └── HelloWorldModel.cs
│ │ ├── Program.cs
│ │ ├── Properties
│ │ └── launchSettings.json
│ │ ├── Resources
│ │ └── HelloWorldCard.json
│ │ ├── TeamsBot.cs
│ │ ├── Templates
│ │ ├── appPackage
│ │ │ ├── manifest.template.json
│ │ │ └── resources
│ │ │ │ ├── color.png
│ │ │ │ └── outline.png
│ │ └── azure
│ │ │ ├── config.bicep
│ │ │ ├── main.bicep
│ │ │ ├── provision.bicep
│ │ │ ├── provision
│ │ │ ├── azureWebAppBot.bicep
│ │ │ ├── botService.bicep
│ │ │ └── identity.bicep
│ │ │ └── teamsFx
│ │ │ └── azureWebAppBotConfig.bicep
│ │ ├── appsettings.json
│ │ └── command-bot.csproj
├── message-extension
│ ├── .vs
│ │ ├── ProjectEvaluation
│ │ │ ├── message-extension.metadata.v6.1
│ │ │ └── message-extension.projects.v6.1
│ │ └── message-extension
│ │ │ ├── DesignTimeBuild
│ │ │ └── .dtbcache.v2
│ │ │ └── v17
│ │ │ └── .suo
│ ├── message-extension.sln
│ └── message-extension
│ │ ├── .fx
│ │ └── configs
│ │ │ ├── azure.parameters.dev.json
│ │ │ ├── config.dev.json
│ │ │ └── projectSettings.json
│ │ ├── .gitignore
│ │ ├── .webappignore
│ │ ├── AdapterWithErrorHandler.cs
│ │ ├── Bot
│ │ └── TeamsMessageExtension.cs
│ │ ├── Controllers
│ │ └── BotController.cs
│ │ ├── GettingStarted.txt
│ │ ├── Program.cs
│ │ ├── Properties
│ │ └── launchSettings.json
│ │ ├── Templates
│ │ ├── appPackage
│ │ │ ├── manifest.template.json
│ │ │ └── resources
│ │ │ │ ├── color.png
│ │ │ │ └── outline.png
│ │ └── azure
│ │ │ ├── config.bicep
│ │ │ ├── main.bicep
│ │ │ ├── provision.bicep
│ │ │ ├── provision
│ │ │ ├── azureWebAppBot.bicep
│ │ │ ├── botService.bicep
│ │ │ └── identity.bicep
│ │ │ └── teamsFx
│ │ │ └── azureWebAppBotConfig.bicep
│ │ ├── appsettings.json
│ │ ├── message-extension.csproj
│ │ └── obj
│ │ └── Debug
│ │ └── net6.0
│ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs
│ │ ├── message-extension.AssemblyInfo.cs
│ │ ├── message-extension.AssemblyInfoInputs.cache
│ │ ├── message-extension.GeneratedMSBuildEditorConfig.editorconfig
│ │ ├── message-extension.GlobalUsings.g.cs
│ │ └── message-extension.csproj.AssemblyReference.cache
├── notification-bot-func-http
│ ├── .vs
│ │ ├── ProjectEvaluation
│ │ │ ├── notification-bot-func-http.metadata.v6.1
│ │ │ └── notification-bot-func-http.projects.v6.1
│ │ └── notification-bot-func-http
│ │ │ ├── DesignTimeBuild
│ │ │ └── .dtbcache.v2
│ │ │ └── v17
│ │ │ ├── .futdcache.v2
│ │ │ └── .suo
│ ├── notification-bot-func-http.sln
│ └── notification-bot-func-http
│ │ ├── .fx
│ │ └── configs
│ │ │ ├── azure.parameters.dev.json
│ │ │ ├── config.dev.json
│ │ │ └── projectSettings.json
│ │ ├── .gitignore
│ │ ├── AdapterWithErrorHandler.cs
│ │ ├── GettingStarted.txt
│ │ ├── MessageHandler.cs
│ │ ├── Models
│ │ └── NotificationDefaultModel.cs
│ │ ├── NotifyHttpTrigger.cs
│ │ ├── Properties
│ │ ├── launchSettings.json
│ │ ├── serviceDependencies.json
│ │ └── serviceDependencies.local.json
│ │ ├── Resources
│ │ └── NotificationDefault.json
│ │ ├── Startup.cs
│ │ ├── TeamsBot.cs
│ │ ├── Templates
│ │ ├── appPackage
│ │ │ ├── manifest.template.json
│ │ │ └── resources
│ │ │ │ ├── color.png
│ │ │ │ └── outline.png
│ │ └── azure
│ │ │ ├── config.bicep
│ │ │ ├── main.bicep
│ │ │ ├── provision.bicep
│ │ │ ├── provision
│ │ │ ├── azureFunctionBot.bicep
│ │ │ ├── botService.bicep
│ │ │ └── identity.bicep
│ │ │ └── teamsFx
│ │ │ └── azureFunctionBotConfig.bicep
│ │ ├── appsettings.json
│ │ ├── host.json
│ │ ├── local.settings.json
│ │ └── notification-bot-func-http.csproj
├── notification-bot-func-timer
│ ├── .vs
│ │ ├── ProjectEvaluation
│ │ │ ├── notification-bot-func-timer.metadata.v6.1
│ │ │ └── notification-bot-func-timer.projects.v6.1
│ │ └── notification-bot-func-timer
│ │ │ ├── DesignTimeBuild
│ │ │ └── .dtbcache.v2
│ │ │ ├── FileContentIndex
│ │ │ ├── 9f389dd4-bb8d-4284-a431-8bee3f92ac36.vsidx
│ │ │ └── read.lock
│ │ │ └── v17
│ │ │ ├── .futdcache.v2
│ │ │ └── .suo
│ ├── notification-bot-func-timer.sln
│ └── notification-bot-func-timer
│ │ ├── .fx
│ │ └── configs
│ │ │ ├── azure.parameters.dev.json
│ │ │ ├── config.dev.json
│ │ │ └── projectSettings.json
│ │ ├── .gitignore
│ │ ├── AdapterWithErrorHandler.cs
│ │ ├── GettingStarted.txt
│ │ ├── MessageHandler.cs
│ │ ├── Models
│ │ └── NotificationDefaultModel.cs
│ │ ├── NotifyTimerTrigger.cs
│ │ ├── Properties
│ │ ├── launchSettings.json
│ │ ├── serviceDependencies.json
│ │ └── serviceDependencies.local.json
│ │ ├── Resources
│ │ └── NotificationDefault.json
│ │ ├── Startup.cs
│ │ ├── TeamsBot.cs
│ │ ├── Templates
│ │ ├── appPackage
│ │ │ ├── manifest.template.json
│ │ │ └── resources
│ │ │ │ ├── color.png
│ │ │ │ └── outline.png
│ │ └── azure
│ │ │ ├── config.bicep
│ │ │ ├── main.bicep
│ │ │ ├── provision.bicep
│ │ │ ├── provision
│ │ │ ├── azureFunctionBot.bicep
│ │ │ ├── botService.bicep
│ │ │ └── identity.bicep
│ │ │ └── teamsFx
│ │ │ └── azureFunctionBotConfig.bicep
│ │ ├── appsettings.json
│ │ ├── host.json
│ │ ├── local.settings.json
│ │ └── notification-bot-func-timer.csproj
├── notification-bot-webapi
│ ├── .vs
│ │ ├── ProjectEvaluation
│ │ │ ├── notification-bot-webapi.metadata.v6.1
│ │ │ └── notification-bot-webapi.projects.v6.1
│ │ └── notification-bot-webapi
│ │ │ ├── DesignTimeBuild
│ │ │ └── .dtbcache.v2
│ │ │ ├── FileContentIndex
│ │ │ ├── 2f1a4f8f-1d1c-4dff-9095-94b5f3d09d20.vsidx
│ │ │ └── read.lock
│ │ │ └── v17
│ │ │ ├── .futdcache.v2
│ │ │ └── .suo
│ ├── notification-bot-webapi.sln
│ └── notification-bot-webapi
│ │ ├── .fx
│ │ └── configs
│ │ │ ├── azure.parameters.dev.json
│ │ │ ├── config.dev.json
│ │ │ └── projectSettings.json
│ │ ├── .gitignore
│ │ ├── AdapterWithErrorHandler.cs
│ │ ├── Controllers
│ │ ├── BotController.cs
│ │ └── NotificationController.cs
│ │ ├── GettingStarted.txt
│ │ ├── Models
│ │ └── NotificationDefaultModel.cs
│ │ ├── Program.cs
│ │ ├── Properties
│ │ └── launchSettings.json
│ │ ├── Resources
│ │ └── NotificationDefault.json
│ │ ├── TeamsBot.cs
│ │ ├── Templates
│ │ ├── appPackage
│ │ │ ├── manifest.template.json
│ │ │ └── resources
│ │ │ │ ├── color.png
│ │ │ │ └── outline.png
│ │ └── azure
│ │ │ ├── config.bicep
│ │ │ ├── main.bicep
│ │ │ ├── provision.bicep
│ │ │ ├── provision
│ │ │ ├── azureWebAppBot.bicep
│ │ │ ├── botService.bicep
│ │ │ └── identity.bicep
│ │ │ └── teamsFx
│ │ │ └── azureWebAppBotConfig.bicep
│ │ ├── appsettings.json
│ │ └── notification-bot-webapi.csproj
├── tab-sso
│ ├── .vs
│ │ ├── ProjectEvaluation
│ │ │ ├── tab-sso.metadata.v6.1
│ │ │ └── tab-sso.projects.v6.1
│ │ └── tab-sso
│ │ │ ├── DesignTimeBuild
│ │ │ └── .dtbcache.v2
│ │ │ └── v17
│ │ │ ├── .futdcache.v2
│ │ │ └── .suo
│ ├── tab-sso.sln
│ └── tab-sso
│ │ ├── .fx
│ │ └── configs
│ │ │ ├── azure.parameters.dev.json
│ │ │ ├── config.dev.json
│ │ │ └── projectSettings.json
│ │ ├── .gitignore
│ │ ├── App.razor
│ │ ├── Components
│ │ ├── CurrentUser.razor
│ │ ├── Deploy.razor
│ │ ├── EditCode.razor
│ │ ├── Graph.razor
│ │ ├── Loading.razor
│ │ ├── ProfileCard.razor
│ │ ├── ProfileCard.razor.css
│ │ ├── Publish.razor
│ │ ├── Welcome.razor
│ │ └── Welcome.razor.css
│ │ ├── Config.cs
│ │ ├── GettingStarted.txt
│ │ ├── Interop
│ │ ├── InteropModuleBase.cs
│ │ └── TeamsSDK
│ │ │ ├── EnumDescriptionConverter.cs
│ │ │ ├── MicrosoftTeams.cs
│ │ │ ├── TeamsContext.cs
│ │ │ └── TeamsInstanceSettings.cs
│ │ ├── Pages
│ │ ├── Error.cshtml
│ │ ├── Error.cshtml.cs
│ │ ├── Privacy.razor
│ │ ├── Tab.razor
│ │ ├── Tab.razor.css
│ │ ├── TabConfig.razor
│ │ ├── TermsOfUse.razor
│ │ └── _Host.cshtml
│ │ ├── Program.cs
│ │ ├── Properties
│ │ └── launchSettings.json
│ │ ├── Shared
│ │ └── MainLayout.razor
│ │ ├── Templates
│ │ ├── appPackage
│ │ │ ├── aad.template.json
│ │ │ ├── manifest.template.json
│ │ │ └── resources
│ │ │ │ ├── color.png
│ │ │ │ └── outline.png
│ │ └── azure
│ │ │ ├── config.bicep
│ │ │ ├── main.bicep
│ │ │ ├── provision.bicep
│ │ │ ├── provision
│ │ │ ├── azureWebAppTab.bicep
│ │ │ └── identity.bicep
│ │ │ └── teamsFx
│ │ │ └── azureWebAppTabConfig.bicep
│ │ ├── _Imports.razor
│ │ ├── appsettings.json
│ │ ├── obj
│ │ └── Debug
│ │ │ └── net6.0
│ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs
│ │ │ ├── tab-sso.AssemblyInfo.cs
│ │ │ ├── tab-sso.AssemblyInfoInputs.cache
│ │ │ ├── tab-sso.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ ├── tab-sso.GlobalUsings.g.cs
│ │ │ ├── tab-sso.RazorAssemblyInfo.cache
│ │ │ ├── tab-sso.RazorAssemblyInfo.cs
│ │ │ └── tab-sso.csproj.AssemblyReference.cache
│ │ ├── tab-sso.csproj
│ │ └── wwwroot
│ │ ├── css
│ │ ├── open-iconic
│ │ │ ├── FONT-LICENSE
│ │ │ ├── ICON-LICENSE
│ │ │ ├── README.md
│ │ │ └── font
│ │ │ │ ├── css
│ │ │ │ └── open-iconic-bootstrap.min.css
│ │ │ │ └── fonts
│ │ │ │ ├── open-iconic.eot
│ │ │ │ ├── open-iconic.otf
│ │ │ │ ├── open-iconic.svg
│ │ │ │ ├── open-iconic.ttf
│ │ │ │ └── open-iconic.woff
│ │ └── site.css
│ │ ├── favicon.ico
│ │ ├── hello.png
│ │ └── js
│ │ └── TeamsJsBlazorInterop.js
├── tab
│ ├── .vs
│ │ ├── ProjectEvaluation
│ │ │ ├── tab.metadata.v6.1
│ │ │ └── tab.projects.v6.1
│ │ └── tab
│ │ │ └── v17
│ │ │ └── .suo
│ ├── tab.sln
│ └── tab
│ │ ├── .fx
│ │ └── configs
│ │ │ ├── azure.parameters.dev.json
│ │ │ ├── config.dev.json
│ │ │ └── projectSettings.json
│ │ ├── .gitignore
│ │ ├── App.razor
│ │ ├── Components
│ │ ├── AddSSO.razor
│ │ ├── Deploy.razor
│ │ ├── EditCode.razor
│ │ ├── Loading.razor
│ │ ├── Publish.razor
│ │ ├── Welcome.razor
│ │ └── Welcome.razor.css
│ │ ├── GettingStarted.txt
│ │ ├── Interop
│ │ ├── InteropModuleBase.cs
│ │ └── TeamsSDK
│ │ │ ├── EnumDescriptionConverter.cs
│ │ │ ├── MicrosoftTeams.cs
│ │ │ ├── TeamsContext.cs
│ │ │ └── TeamsInstanceSettings.cs
│ │ ├── Pages
│ │ ├── Error.cshtml
│ │ ├── Error.cshtml.cs
│ │ ├── Privacy.razor
│ │ ├── Tab.razor
│ │ ├── Tab.razor.css
│ │ ├── TabConfig.razor
│ │ ├── TermsOfUse.razor
│ │ └── _Host.cshtml
│ │ ├── Program.cs
│ │ ├── Properties
│ │ └── launchSettings.json
│ │ ├── Shared
│ │ └── MainLayout.razor
│ │ ├── Templates
│ │ ├── appPackage
│ │ │ ├── manifest.template.json
│ │ │ └── resources
│ │ │ │ ├── color.png
│ │ │ │ └── outline.png
│ │ └── azure
│ │ │ ├── config.bicep
│ │ │ ├── main.bicep
│ │ │ ├── provision.bicep
│ │ │ ├── provision
│ │ │ ├── azureWebAppTab.bicep
│ │ │ └── identity.bicep
│ │ │ └── teamsFx
│ │ │ └── azureWebAppTabConfig.bicep
│ │ ├── _Imports.razor
│ │ ├── appsettings.json
│ │ ├── obj
│ │ └── Debug
│ │ │ └── net6.0
│ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs
│ │ │ ├── tab.AssemblyInfo.cs
│ │ │ ├── tab.AssemblyInfoInputs.cache
│ │ │ ├── tab.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ ├── tab.GlobalUsings.g.cs
│ │ │ ├── tab.RazorAssemblyInfo.cache
│ │ │ ├── tab.RazorAssemblyInfo.cs
│ │ │ └── tab.csproj.AssemblyReference.cache
│ │ ├── tab.csproj
│ │ └── wwwroot
│ │ ├── css
│ │ ├── open-iconic
│ │ │ ├── FONT-LICENSE
│ │ │ ├── ICON-LICENSE
│ │ │ ├── README.md
│ │ │ └── font
│ │ │ │ ├── css
│ │ │ │ └── open-iconic-bootstrap.min.css
│ │ │ │ └── fonts
│ │ │ │ ├── open-iconic.eot
│ │ │ │ ├── open-iconic.otf
│ │ │ │ ├── open-iconic.svg
│ │ │ │ ├── open-iconic.ttf
│ │ │ │ └── open-iconic.woff
│ │ └── site.css
│ │ ├── favicon.ico
│ │ ├── hello.png
│ │ └── js
│ │ └── TeamsJsBlazorInterop.js
└── workflow-bot
│ ├── .vs
│ ├── ProjectEvaluation
│ │ ├── workflow-bot.metadata.v6.1
│ │ └── workflow-bot.projects.v6.1
│ └── workflow-bot
│ │ └── v17
│ │ └── .suo
│ ├── workflow-bot.sln
│ └── workflow-bot
│ ├── .fx
│ └── configs
│ │ ├── azure.parameters.dev.json
│ │ ├── config.dev.json
│ │ └── projectSettings.json
│ ├── .gitignore
│ ├── AdapterWithErrorHandler.cs
│ ├── CardActions
│ └── DoStuffActionHandler.cs
│ ├── Commands
│ └── HelloWorldCommandHandler.cs
│ ├── Controllers
│ └── BotController.cs
│ ├── GettingStarted.txt
│ ├── Models
│ └── HelloWorldModel.cs
│ ├── Program.cs
│ ├── Properties
│ └── launchSettings.json
│ ├── Resources
│ ├── DoStuffActionResponse.json
│ └── HelloWorldCommandResponse.json
│ ├── TeamsBot.cs
│ ├── Templates
│ ├── appPackage
│ │ ├── manifest.template.json
│ │ └── resources
│ │ │ ├── color.png
│ │ │ └── outline.png
│ └── azure
│ │ ├── config.bicep
│ │ ├── main.bicep
│ │ ├── provision.bicep
│ │ ├── provision
│ │ ├── azureWebAppBot.bicep
│ │ ├── botService.bicep
│ │ └── identity.bicep
│ │ └── teamsFx
│ │ └── azureWebAppBotConfig.bicep
│ ├── appsettings.json
│ └── workflow-bot.csproj
└── vscode-js
├── README.md
├── basic-bot
├── README.md
├── adaptiveCards
│ ├── learn.json
│ └── welcome.json
├── appPackage
│ ├── color.png
│ ├── manifest.json
│ └── outline.png
├── config.js
├── index.js
├── infra
│ ├── azure.bicep
│ ├── azure.parameters.json
│ └── botRegistration
│ │ ├── azurebot.bicep
│ │ └── readme.md
├── package.json
├── teamsBot.js
├── teamsapp.local.yml
├── teamsapp.yml
└── web.config
├── basic-dashboard
├── README.md
├── appPackage
│ ├── color.png
│ ├── manifest.json
│ └── outline.png
├── infra
│ ├── azure.bicep
│ └── azure.parameters.json
├── package.json
├── public
│ ├── dashboard-dark.png
│ ├── dashboard-hc.png
│ ├── dashboard.png
│ └── index.html
├── src
│ ├── App.css
│ ├── App.jsx
│ ├── Privacy.jsx
│ ├── TabConfig.jsx
│ ├── TermsOfUse.jsx
│ ├── dashboards
│ │ └── SampleDashboard.jsx
│ ├── index.css
│ ├── index.jsx
│ ├── internal
│ │ ├── addNewScopes.js
│ │ ├── context.jsx
│ │ ├── login.js
│ │ └── singletonContext.js
│ ├── services
│ │ ├── chartService.js
│ │ └── listService.js
│ ├── styles
│ │ ├── ChartWidget.css
│ │ └── ListWidget.css
│ └── widgets
│ │ ├── ChartWidget.jsx
│ │ └── ListWidget.jsx
├── teamsapp.local.yml
└── teamsapp.yml
├── basic-tab
├── README.md
├── appPackage
│ ├── color.png
│ ├── manifest.json
│ └── outline.png
├── infra
│ ├── azure.bicep
│ └── azure.parameters.json
├── package.json
├── src
│ ├── app.js
│ ├── static
│ │ ├── favicon.ico
│ │ ├── scripts
│ │ │ └── teamsapp.js
│ │ └── styles
│ │ │ └── custom.css
│ └── views
│ │ └── hello.html
├── teamsapp.local.yml
├── teamsapp.yml
└── web.config
├── chat-command
├── README.md
├── appPackage
│ ├── color.png
│ ├── manifest.json
│ └── outline.png
├── infra
│ ├── azure.bicep
│ ├── azure.parameters.json
│ └── botRegistration
│ │ ├── azurebot.bicep
│ │ └── readme.md
├── package.json
├── src
│ ├── adaptiveCards
│ │ └── helloworldCommand.json
│ ├── helloworldCommandHandler.js
│ ├── index.js
│ ├── internal
│ │ ├── config.js
│ │ └── initialize.js
│ └── teamsBot.js
├── teamsapp.local.yml
├── teamsapp.yml
└── web.config
├── collect-form-data
├── README.md
├── appPackage
│ ├── color.png
│ ├── manifest.json
│ └── outline.png
├── config.js
├── images
│ ├── AdaptiveCard.png
│ ├── AtBotFromSearch.png
│ ├── AtBotInMessage.png
│ ├── LinkUnfurlingImage.png
│ ├── ShareMessage.png
│ ├── ThreeDot.png
│ └── ThreeDotOnMessage.png
├── index.js
├── infra
│ ├── azure.bicep
│ ├── azure.parameters.json
│ └── botRegistration
│ │ ├── azurebot.bicep
│ │ └── readme.md
├── package.json
├── teamsBot.js
├── teamsapp.local.yml
├── teamsapp.yml
└── web.config
├── customer-search-results
├── README.md
├── appPackage
│ ├── color.png
│ ├── manifest.json
│ └── outline.png
├── config.js
├── index.js
├── infra
│ ├── azure.bicep
│ ├── azure.parameters.json
│ └── botRegistration
│ │ ├── azurebot.bicep
│ │ └── readme.md
├── package.json
├── teamsBot.js
├── teamsapp.local.yml
├── teamsapp.yml
└── web.config
├── http-trigger-bot
├── README.md
├── appPackage
│ ├── color.png
│ ├── manifest.json
│ └── outline.png
├── infra
│ ├── azure.bicep
│ ├── azure.parameters.json
│ └── botRegistration
│ │ ├── azurebot.bicep
│ │ └── readme.md
├── package.json
├── src
│ ├── adaptiveCards
│ │ └── notification-default.json
│ ├── index.js
│ ├── internal
│ │ ├── config.js
│ │ └── initialize.js
│ └── teamsBot.js
├── teamsapp.local.yml
├── teamsapp.yml
└── web.config
├── react-with-fluent-UI
├── README.md
├── aad.manifest.json
├── appPackage
│ ├── color.png
│ ├── manifest.json
│ └── outline.png
├── infra
│ ├── azure.bicep
│ └── azure.parameters.json
├── package.json
├── public
│ ├── auth-end.html
│ ├── auth-start.html
│ ├── deploy.png
│ ├── favicon.ico
│ ├── hello.png
│ ├── index.html
│ └── publish.png
├── src
│ ├── components
│ │ ├── App.jsx
│ │ ├── Context.jsx
│ │ ├── Privacy.jsx
│ │ ├── Tab.jsx
│ │ ├── TabConfig.jsx
│ │ ├── TermsOfUse.jsx
│ │ └── sample
│ │ │ ├── AzureFunctions.jsx
│ │ │ ├── CurrentUser.jsx
│ │ │ ├── Deploy.css
│ │ │ ├── Deploy.jsx
│ │ │ ├── Design.jsx
│ │ │ ├── EditCode.jsx
│ │ │ ├── Graph.css
│ │ │ ├── Graph.jsx
│ │ │ ├── PersonCardFluentUI.jsx
│ │ │ ├── PersonCardGraphToolkit.jsx
│ │ │ ├── ProfileCard.jsx
│ │ │ ├── Publish.css
│ │ │ ├── Publish.jsx
│ │ │ ├── Welcome.css
│ │ │ ├── Welcome.jsx
│ │ │ └── lib
│ │ │ └── config.js
│ ├── index.css
│ └── index.jsx
├── teamsapp.local.yml
└── teamsapp.yml
├── sequential-workflow-in-chat
├── README.md
├── appPackage
│ ├── color.png
│ ├── manifest.json
│ └── outline.png
├── infra
│ ├── azure.bicep
│ ├── azure.parameters.json
│ └── botRegistration
│ │ ├── azurebot.bicep
│ │ └── readme.md
├── package.json
├── src
│ ├── adaptiveCards
│ │ ├── doStuffActionResponse.json
│ │ └── helloworldCommandResponse.json
│ ├── cardActions
│ │ └── doStuffActionHandler.js
│ ├── commands
│ │ └── helloworldCommandHandler.js
│ ├── index.js
│ ├── internal
│ │ ├── config.js
│ │ └── initialize.js
│ └── teamsBot.js
├── teamsapp.local.yml
├── teamsapp.yml
└── web.config
└── spfx-basic-tab
├── appPackage
├── color.png
├── manifest.json
├── manifest.local.json
└── outline.png
├── package.json
├── src
├── README.md
├── config
│ ├── config.json
│ ├── deploy-azure-storage.json
│ ├── package-solution.json
│ ├── sass.json
│ ├── serve.json
│ └── write-manifests.json
├── gulpfile.js
├── package.json
├── src
│ ├── index.ts
│ └── webparts
│ │ └── helloworld
│ │ ├── HelloworldWebPart.manifest.json
│ │ ├── HelloworldWebPart.ts
│ │ ├── assets
│ │ ├── welcome-dark.png
│ │ └── welcome-light.png
│ │ ├── components
│ │ ├── Helloworld.module.scss
│ │ ├── Helloworld.tsx
│ │ └── IHelloworldProps.ts
│ │ └── loc
│ │ ├── en-us.js
│ │ └── mystrings.d.ts
├── teams
│ ├── 3712ac12-1487-4fa2-855a-26d25bd2964d_color.png
│ └── 3712ac12-1487-4fa2-855a-26d25bd2964d_outline.png
└── tsconfig.json
├── teamsapp.local.yml
└── teamsapp.yml
/.github/ISSUE_TEMPLATE/project.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/.github/ISSUE_TEMPLATE/project.yml
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/README.md
--------------------------------------------------------------------------------
/SECURITY.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/SECURITY.md
--------------------------------------------------------------------------------
/SETUP.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/SETUP.md
--------------------------------------------------------------------------------
/TOP-SCENARIOS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/TOP-SCENARIOS.md
--------------------------------------------------------------------------------
/templates/vs-dotnet/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/README.md
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/.vs/ProjectEvaluation/command-bot.metadata.v6.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/.vs/ProjectEvaluation/command-bot.metadata.v6.1
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/.vs/ProjectEvaluation/command-bot.projects.v6.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/.vs/ProjectEvaluation/command-bot.projects.v6.1
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/.vs/command-bot/v17/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/.vs/command-bot/v17/.suo
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot.sln
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/.fx/configs/azure.parameters.dev.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/.fx/configs/azure.parameters.dev.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/.fx/configs/config.dev.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/.fx/configs/config.dev.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/.fx/configs/projectSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/.fx/configs/projectSettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/.gitignore
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/AdapterWithErrorHandler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/AdapterWithErrorHandler.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/Commands/HelloWorldCommandHandler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/Commands/HelloWorldCommandHandler.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/Controllers/BotController.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/Controllers/BotController.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/GettingStarted.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/GettingStarted.txt
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/Models/HelloWorldModel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/Models/HelloWorldModel.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/Program.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/Properties/launchSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/Properties/launchSettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/Resources/HelloWorldCard.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/Resources/HelloWorldCard.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/TeamsBot.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/TeamsBot.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/Templates/appPackage/manifest.template.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/Templates/appPackage/manifest.template.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/Templates/appPackage/resources/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/Templates/appPackage/resources/color.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/Templates/appPackage/resources/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/Templates/appPackage/resources/outline.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/Templates/azure/config.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/Templates/azure/config.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/Templates/azure/main.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/Templates/azure/main.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/Templates/azure/provision.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/Templates/azure/provision.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/Templates/azure/provision/azureWebAppBot.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/Templates/azure/provision/azureWebAppBot.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/Templates/azure/provision/botService.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/Templates/azure/provision/botService.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/Templates/azure/provision/identity.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/Templates/azure/provision/identity.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/Templates/azure/teamsFx/azureWebAppBotConfig.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/Templates/azure/teamsFx/azureWebAppBotConfig.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/appsettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/appsettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/command-bot/command-bot/command-bot.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/command-bot/command-bot/command-bot.csproj
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/.vs/ProjectEvaluation/message-extension.metadata.v6.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/.vs/ProjectEvaluation/message-extension.metadata.v6.1
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/.vs/ProjectEvaluation/message-extension.projects.v6.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/.vs/ProjectEvaluation/message-extension.projects.v6.1
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/.vs/message-extension/DesignTimeBuild/.dtbcache.v2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/.vs/message-extension/DesignTimeBuild/.dtbcache.v2
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/.vs/message-extension/v17/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/.vs/message-extension/v17/.suo
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension.sln
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/.fx/configs/azure.parameters.dev.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/.fx/configs/azure.parameters.dev.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/.fx/configs/config.dev.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/.fx/configs/config.dev.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/.fx/configs/projectSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/.fx/configs/projectSettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/.gitignore
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/.webappignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/.webappignore
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/AdapterWithErrorHandler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/AdapterWithErrorHandler.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/Bot/TeamsMessageExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/Bot/TeamsMessageExtension.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/Controllers/BotController.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/Controllers/BotController.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/GettingStarted.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/GettingStarted.txt
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/Program.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/Properties/launchSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/Properties/launchSettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/Templates/appPackage/manifest.template.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/Templates/appPackage/manifest.template.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/Templates/appPackage/resources/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/Templates/appPackage/resources/color.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/Templates/appPackage/resources/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/Templates/appPackage/resources/outline.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/Templates/azure/config.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/Templates/azure/config.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/Templates/azure/main.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/Templates/azure/main.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/Templates/azure/provision.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/Templates/azure/provision.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/Templates/azure/provision/azureWebAppBot.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/Templates/azure/provision/azureWebAppBot.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/Templates/azure/provision/botService.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/Templates/azure/provision/botService.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/Templates/azure/provision/identity.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/Templates/azure/provision/identity.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/Templates/azure/teamsFx/azureWebAppBotConfig.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/Templates/azure/teamsFx/azureWebAppBotConfig.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/appsettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/appsettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/message-extension.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/message-extension.csproj
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/obj/Debug/net6.0/message-extension.AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/obj/Debug/net6.0/message-extension.AssemblyInfo.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/obj/Debug/net6.0/message-extension.AssemblyInfoInputs.cache:
--------------------------------------------------------------------------------
1 | 2c80c5aebcd1fa295e6ecb8666dd4d86ce3d1ee9
2 |
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/obj/Debug/net6.0/message-extension.GeneratedMSBuildEditorConfig.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/obj/Debug/net6.0/message-extension.GeneratedMSBuildEditorConfig.editorconfig
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/obj/Debug/net6.0/message-extension.GlobalUsings.g.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/obj/Debug/net6.0/message-extension.GlobalUsings.g.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/message-extension/message-extension/obj/Debug/net6.0/message-extension.csproj.AssemblyReference.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/message-extension/message-extension/obj/Debug/net6.0/message-extension.csproj.AssemblyReference.cache
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/.vs/ProjectEvaluation/notification-bot-func-http.metadata.v6.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/.vs/ProjectEvaluation/notification-bot-func-http.metadata.v6.1
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/.vs/ProjectEvaluation/notification-bot-func-http.projects.v6.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/.vs/ProjectEvaluation/notification-bot-func-http.projects.v6.1
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/.vs/notification-bot-func-http/DesignTimeBuild/.dtbcache.v2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/.vs/notification-bot-func-http/DesignTimeBuild/.dtbcache.v2
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/.vs/notification-bot-func-http/v17/.futdcache.v2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/.vs/notification-bot-func-http/v17/.futdcache.v2
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/.vs/notification-bot-func-http/v17/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/.vs/notification-bot-func-http/v17/.suo
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http.sln
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/.fx/configs/azure.parameters.dev.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/.fx/configs/azure.parameters.dev.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/.fx/configs/config.dev.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/.fx/configs/config.dev.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/.fx/configs/projectSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/.fx/configs/projectSettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/.gitignore
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/AdapterWithErrorHandler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/AdapterWithErrorHandler.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/GettingStarted.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/GettingStarted.txt
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/MessageHandler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/MessageHandler.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Models/NotificationDefaultModel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Models/NotificationDefaultModel.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/NotifyHttpTrigger.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/NotifyHttpTrigger.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Properties/launchSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Properties/launchSettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Properties/serviceDependencies.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Properties/serviceDependencies.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Properties/serviceDependencies.local.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Properties/serviceDependencies.local.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Resources/NotificationDefault.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Resources/NotificationDefault.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Startup.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Startup.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/TeamsBot.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/TeamsBot.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/appPackage/manifest.template.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/appPackage/manifest.template.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/appPackage/resources/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/appPackage/resources/color.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/appPackage/resources/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/appPackage/resources/outline.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/azure/config.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/azure/config.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/azure/main.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/azure/main.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/azure/provision.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/azure/provision.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/azure/provision/azureFunctionBot.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/azure/provision/azureFunctionBot.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/azure/provision/botService.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/azure/provision/botService.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/azure/provision/identity.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/azure/provision/identity.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/azure/teamsFx/azureFunctionBotConfig.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/Templates/azure/teamsFx/azureFunctionBotConfig.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | }
3 |
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/host.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/host.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/local.settings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/local.settings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/notification-bot-func-http.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-http/notification-bot-func-http/notification-bot-func-http.csproj
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/.vs/ProjectEvaluation/notification-bot-func-timer.metadata.v6.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/.vs/ProjectEvaluation/notification-bot-func-timer.metadata.v6.1
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/.vs/ProjectEvaluation/notification-bot-func-timer.projects.v6.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/.vs/ProjectEvaluation/notification-bot-func-timer.projects.v6.1
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/.vs/notification-bot-func-timer/DesignTimeBuild/.dtbcache.v2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/.vs/notification-bot-func-timer/DesignTimeBuild/.dtbcache.v2
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/.vs/notification-bot-func-timer/FileContentIndex/9f389dd4-bb8d-4284-a431-8bee3f92ac36.vsidx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/.vs/notification-bot-func-timer/FileContentIndex/9f389dd4-bb8d-4284-a431-8bee3f92ac36.vsidx
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/.vs/notification-bot-func-timer/FileContentIndex/read.lock:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/.vs/notification-bot-func-timer/v17/.futdcache.v2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/.vs/notification-bot-func-timer/v17/.futdcache.v2
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/.vs/notification-bot-func-timer/v17/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/.vs/notification-bot-func-timer/v17/.suo
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer.sln
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/.fx/configs/azure.parameters.dev.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/.fx/configs/azure.parameters.dev.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/.fx/configs/config.dev.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/.fx/configs/config.dev.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/.fx/configs/projectSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/.fx/configs/projectSettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/.gitignore
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/AdapterWithErrorHandler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/AdapterWithErrorHandler.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/GettingStarted.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/GettingStarted.txt
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/MessageHandler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/MessageHandler.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Models/NotificationDefaultModel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Models/NotificationDefaultModel.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/NotifyTimerTrigger.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/NotifyTimerTrigger.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Properties/launchSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Properties/launchSettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Properties/serviceDependencies.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Properties/serviceDependencies.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Properties/serviceDependencies.local.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Properties/serviceDependencies.local.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Resources/NotificationDefault.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Resources/NotificationDefault.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Startup.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Startup.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/TeamsBot.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/TeamsBot.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/appPackage/manifest.template.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/appPackage/manifest.template.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/appPackage/resources/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/appPackage/resources/color.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/appPackage/resources/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/appPackage/resources/outline.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/azure/config.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/azure/config.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/azure/main.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/azure/main.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/azure/provision.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/azure/provision.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/azure/provision/azureFunctionBot.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/azure/provision/azureFunctionBot.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/azure/provision/botService.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/azure/provision/botService.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/azure/provision/identity.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/azure/provision/identity.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/azure/teamsFx/azureFunctionBotConfig.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/Templates/azure/teamsFx/azureFunctionBotConfig.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | }
3 |
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/host.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/host.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/local.settings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/local.settings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/notification-bot-func-timer.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-func-timer/notification-bot-func-timer/notification-bot-func-timer.csproj
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/.vs/ProjectEvaluation/notification-bot-webapi.metadata.v6.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/.vs/ProjectEvaluation/notification-bot-webapi.metadata.v6.1
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/.vs/ProjectEvaluation/notification-bot-webapi.projects.v6.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/.vs/ProjectEvaluation/notification-bot-webapi.projects.v6.1
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/.vs/notification-bot-webapi/DesignTimeBuild/.dtbcache.v2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/.vs/notification-bot-webapi/DesignTimeBuild/.dtbcache.v2
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/.vs/notification-bot-webapi/FileContentIndex/2f1a4f8f-1d1c-4dff-9095-94b5f3d09d20.vsidx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/.vs/notification-bot-webapi/FileContentIndex/2f1a4f8f-1d1c-4dff-9095-94b5f3d09d20.vsidx
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/.vs/notification-bot-webapi/FileContentIndex/read.lock:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/.vs/notification-bot-webapi/v17/.futdcache.v2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/.vs/notification-bot-webapi/v17/.futdcache.v2
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/.vs/notification-bot-webapi/v17/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/.vs/notification-bot-webapi/v17/.suo
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi.sln
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/.fx/configs/azure.parameters.dev.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/.fx/configs/azure.parameters.dev.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/.fx/configs/config.dev.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/.fx/configs/config.dev.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/.fx/configs/projectSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/.fx/configs/projectSettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/.gitignore
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/AdapterWithErrorHandler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/AdapterWithErrorHandler.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Controllers/BotController.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Controllers/BotController.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Controllers/NotificationController.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Controllers/NotificationController.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/GettingStarted.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/GettingStarted.txt
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Models/NotificationDefaultModel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Models/NotificationDefaultModel.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Program.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Properties/launchSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Properties/launchSettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Resources/NotificationDefault.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Resources/NotificationDefault.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/TeamsBot.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/TeamsBot.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/appPackage/manifest.template.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/appPackage/manifest.template.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/appPackage/resources/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/appPackage/resources/color.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/appPackage/resources/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/appPackage/resources/outline.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/azure/config.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/azure/config.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/azure/main.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/azure/main.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/azure/provision.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/azure/provision.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/azure/provision/azureWebAppBot.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/azure/provision/azureWebAppBot.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/azure/provision/botService.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/azure/provision/botService.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/azure/provision/identity.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/azure/provision/identity.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/azure/teamsFx/azureWebAppBotConfig.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/Templates/azure/teamsFx/azureWebAppBotConfig.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/appsettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/appsettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/notification-bot-webapi.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/notification-bot-webapi/notification-bot-webapi/notification-bot-webapi.csproj
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/.vs/ProjectEvaluation/tab-sso.metadata.v6.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/.vs/ProjectEvaluation/tab-sso.metadata.v6.1
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/.vs/ProjectEvaluation/tab-sso.projects.v6.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/.vs/ProjectEvaluation/tab-sso.projects.v6.1
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/.vs/tab-sso/DesignTimeBuild/.dtbcache.v2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/.vs/tab-sso/DesignTimeBuild/.dtbcache.v2
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/.vs/tab-sso/v17/.futdcache.v2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/.vs/tab-sso/v17/.futdcache.v2
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/.vs/tab-sso/v17/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/.vs/tab-sso/v17/.suo
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso.sln
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/.fx/configs/azure.parameters.dev.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/.fx/configs/azure.parameters.dev.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/.fx/configs/config.dev.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/.fx/configs/config.dev.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/.fx/configs/projectSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/.fx/configs/projectSettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/.gitignore
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/App.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/App.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Components/CurrentUser.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Components/CurrentUser.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Components/Deploy.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Components/Deploy.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Components/EditCode.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Components/EditCode.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Components/Graph.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Components/Graph.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Components/Loading.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Components/Loading.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Components/ProfileCard.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Components/ProfileCard.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Components/ProfileCard.razor.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Components/ProfileCard.razor.css
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Components/Publish.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Components/Publish.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Components/Welcome.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Components/Welcome.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Components/Welcome.razor.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Components/Welcome.razor.css
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Config.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Config.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/GettingStarted.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/GettingStarted.txt
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Interop/InteropModuleBase.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Interop/InteropModuleBase.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Interop/TeamsSDK/EnumDescriptionConverter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Interop/TeamsSDK/EnumDescriptionConverter.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Interop/TeamsSDK/MicrosoftTeams.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Interop/TeamsSDK/MicrosoftTeams.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Interop/TeamsSDK/TeamsContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Interop/TeamsSDK/TeamsContext.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Interop/TeamsSDK/TeamsInstanceSettings.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Interop/TeamsSDK/TeamsInstanceSettings.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Pages/Error.cshtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Pages/Error.cshtml
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Pages/Error.cshtml.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Pages/Error.cshtml.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Pages/Privacy.razor:
--------------------------------------------------------------------------------
1 |
Privacy Statement
2 |
3 | @code {
4 |
5 | }
6 |
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Pages/Tab.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Pages/Tab.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Pages/Tab.razor.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Pages/Tab.razor.css
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Pages/TabConfig.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Pages/TabConfig.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Pages/TermsOfUse.razor:
--------------------------------------------------------------------------------
1 | Terms of Use
2 |
3 | @code {
4 |
5 | }
6 |
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Pages/_Host.cshtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Pages/_Host.cshtml
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Program.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Properties/launchSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Properties/launchSettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Shared/MainLayout.razor:
--------------------------------------------------------------------------------
1 | @inherits LayoutComponentBase
2 | @Body
3 |
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Templates/appPackage/aad.template.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Templates/appPackage/aad.template.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Templates/appPackage/manifest.template.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Templates/appPackage/manifest.template.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Templates/appPackage/resources/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Templates/appPackage/resources/color.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Templates/appPackage/resources/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Templates/appPackage/resources/outline.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Templates/azure/config.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Templates/azure/config.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Templates/azure/main.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Templates/azure/main.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Templates/azure/provision.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Templates/azure/provision.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Templates/azure/provision/azureWebAppTab.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Templates/azure/provision/azureWebAppTab.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Templates/azure/provision/identity.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Templates/azure/provision/identity.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/Templates/azure/teamsFx/azureWebAppTabConfig.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/Templates/azure/teamsFx/azureWebAppTabConfig.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/_Imports.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/_Imports.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/appsettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/appsettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/obj/Debug/net6.0/tab-sso.AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/obj/Debug/net6.0/tab-sso.AssemblyInfo.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/obj/Debug/net6.0/tab-sso.AssemblyInfoInputs.cache:
--------------------------------------------------------------------------------
1 | e088a05f228c3f0991fe1917435fd2df5f3860b5
2 |
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/obj/Debug/net6.0/tab-sso.GeneratedMSBuildEditorConfig.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/obj/Debug/net6.0/tab-sso.GeneratedMSBuildEditorConfig.editorconfig
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/obj/Debug/net6.0/tab-sso.GlobalUsings.g.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/obj/Debug/net6.0/tab-sso.GlobalUsings.g.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/obj/Debug/net6.0/tab-sso.RazorAssemblyInfo.cache:
--------------------------------------------------------------------------------
1 | 5860763757f4f08c7ebdea1b3a94a18109f17861
2 |
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/obj/Debug/net6.0/tab-sso.RazorAssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/obj/Debug/net6.0/tab-sso.RazorAssemblyInfo.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/obj/Debug/net6.0/tab-sso.csproj.AssemblyReference.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/obj/Debug/net6.0/tab-sso.csproj.AssemblyReference.cache
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/tab-sso.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/tab-sso.csproj
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/FONT-LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/FONT-LICENSE
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/ICON-LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/ICON-LICENSE
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/README.md
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/font/fonts/open-iconic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/font/fonts/open-iconic.eot
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/font/fonts/open-iconic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/font/fonts/open-iconic.otf
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/font/fonts/open-iconic.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/font/fonts/open-iconic.svg
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/font/fonts/open-iconic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/open-iconic/font/fonts/open-iconic.woff
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/site.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/css/site.css
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/hello.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/hello.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/js/TeamsJsBlazorInterop.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab-sso/tab-sso/wwwroot/js/TeamsJsBlazorInterop.js
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/.vs/ProjectEvaluation/tab.metadata.v6.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/.vs/ProjectEvaluation/tab.metadata.v6.1
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/.vs/ProjectEvaluation/tab.projects.v6.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/.vs/ProjectEvaluation/tab.projects.v6.1
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/.vs/tab/v17/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/.vs/tab/v17/.suo
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab.sln
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/.fx/configs/azure.parameters.dev.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/.fx/configs/azure.parameters.dev.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/.fx/configs/config.dev.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/.fx/configs/config.dev.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/.fx/configs/projectSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/.fx/configs/projectSettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/.gitignore
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/App.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/App.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Components/AddSSO.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Components/AddSSO.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Components/Deploy.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Components/Deploy.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Components/EditCode.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Components/EditCode.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Components/Loading.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Components/Loading.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Components/Publish.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Components/Publish.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Components/Welcome.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Components/Welcome.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Components/Welcome.razor.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Components/Welcome.razor.css
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/GettingStarted.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/GettingStarted.txt
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Interop/InteropModuleBase.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Interop/InteropModuleBase.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Interop/TeamsSDK/EnumDescriptionConverter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Interop/TeamsSDK/EnumDescriptionConverter.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Interop/TeamsSDK/MicrosoftTeams.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Interop/TeamsSDK/MicrosoftTeams.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Interop/TeamsSDK/TeamsContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Interop/TeamsSDK/TeamsContext.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Interop/TeamsSDK/TeamsInstanceSettings.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Interop/TeamsSDK/TeamsInstanceSettings.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Pages/Error.cshtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Pages/Error.cshtml
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Pages/Error.cshtml.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Pages/Error.cshtml.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Pages/Privacy.razor:
--------------------------------------------------------------------------------
1 | Privacy Statement
2 |
3 | @code {
4 |
5 | }
6 |
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Pages/Tab.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Pages/Tab.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Pages/Tab.razor.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Pages/Tab.razor.css
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Pages/TabConfig.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Pages/TabConfig.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Pages/TermsOfUse.razor:
--------------------------------------------------------------------------------
1 | Terms of Use
2 |
3 | @code {
4 |
5 | }
6 |
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Pages/_Host.cshtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Pages/_Host.cshtml
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Program.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Properties/launchSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Properties/launchSettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Shared/MainLayout.razor:
--------------------------------------------------------------------------------
1 | @inherits LayoutComponentBase
2 | @Body
3 |
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Templates/appPackage/manifest.template.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Templates/appPackage/manifest.template.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Templates/appPackage/resources/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Templates/appPackage/resources/color.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Templates/appPackage/resources/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Templates/appPackage/resources/outline.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Templates/azure/config.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Templates/azure/config.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Templates/azure/main.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Templates/azure/main.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Templates/azure/provision.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Templates/azure/provision.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Templates/azure/provision/azureWebAppTab.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Templates/azure/provision/azureWebAppTab.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Templates/azure/provision/identity.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Templates/azure/provision/identity.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/Templates/azure/teamsFx/azureWebAppTabConfig.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/Templates/azure/teamsFx/azureWebAppTabConfig.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/_Imports.razor:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/_Imports.razor
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/appsettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/appsettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/obj/Debug/net6.0/tab.AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/obj/Debug/net6.0/tab.AssemblyInfo.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/obj/Debug/net6.0/tab.AssemblyInfoInputs.cache:
--------------------------------------------------------------------------------
1 | 4de622c125d08ec022e8062efad5bfcdbfdecaed
2 |
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/obj/Debug/net6.0/tab.GeneratedMSBuildEditorConfig.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/obj/Debug/net6.0/tab.GeneratedMSBuildEditorConfig.editorconfig
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/obj/Debug/net6.0/tab.GlobalUsings.g.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/obj/Debug/net6.0/tab.GlobalUsings.g.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/obj/Debug/net6.0/tab.RazorAssemblyInfo.cache:
--------------------------------------------------------------------------------
1 | 5860763757f4f08c7ebdea1b3a94a18109f17861
2 |
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/obj/Debug/net6.0/tab.RazorAssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/obj/Debug/net6.0/tab.RazorAssemblyInfo.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/obj/Debug/net6.0/tab.csproj.AssemblyReference.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/obj/Debug/net6.0/tab.csproj.AssemblyReference.cache
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/tab.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/tab.csproj
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/FONT-LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/FONT-LICENSE
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/ICON-LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/ICON-LICENSE
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/README.md
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/font/fonts/open-iconic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/font/fonts/open-iconic.eot
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/font/fonts/open-iconic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/font/fonts/open-iconic.otf
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/font/fonts/open-iconic.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/font/fonts/open-iconic.svg
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/font/fonts/open-iconic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/wwwroot/css/open-iconic/font/fonts/open-iconic.woff
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/wwwroot/css/site.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/wwwroot/css/site.css
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/wwwroot/hello.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/wwwroot/hello.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/tab/tab/wwwroot/js/TeamsJsBlazorInterop.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/tab/tab/wwwroot/js/TeamsJsBlazorInterop.js
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/.vs/ProjectEvaluation/workflow-bot.metadata.v6.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/.vs/ProjectEvaluation/workflow-bot.metadata.v6.1
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/.vs/ProjectEvaluation/workflow-bot.projects.v6.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/.vs/ProjectEvaluation/workflow-bot.projects.v6.1
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/.vs/workflow-bot/v17/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/.vs/workflow-bot/v17/.suo
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot.sln
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/.fx/configs/azure.parameters.dev.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/.fx/configs/azure.parameters.dev.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/.fx/configs/config.dev.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/.fx/configs/config.dev.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/.fx/configs/projectSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/.fx/configs/projectSettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/.gitignore
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/AdapterWithErrorHandler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/AdapterWithErrorHandler.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/CardActions/DoStuffActionHandler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/CardActions/DoStuffActionHandler.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Commands/HelloWorldCommandHandler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Commands/HelloWorldCommandHandler.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Controllers/BotController.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Controllers/BotController.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/GettingStarted.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/GettingStarted.txt
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Models/HelloWorldModel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Models/HelloWorldModel.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Program.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Properties/launchSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Properties/launchSettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Resources/DoStuffActionResponse.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Resources/DoStuffActionResponse.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Resources/HelloWorldCommandResponse.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Resources/HelloWorldCommandResponse.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/TeamsBot.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/TeamsBot.cs
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/appPackage/manifest.template.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/appPackage/manifest.template.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/appPackage/resources/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/appPackage/resources/color.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/appPackage/resources/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/appPackage/resources/outline.png
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/azure/config.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/azure/config.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/azure/main.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/azure/main.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/azure/provision.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/azure/provision.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/azure/provision/azureWebAppBot.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/azure/provision/azureWebAppBot.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/azure/provision/botService.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/azure/provision/botService.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/azure/provision/identity.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/azure/provision/identity.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/azure/teamsFx/azureWebAppBotConfig.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/Templates/azure/teamsFx/azureWebAppBotConfig.bicep
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/appsettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/appsettings.json
--------------------------------------------------------------------------------
/templates/vs-dotnet/workflow-bot/workflow-bot/workflow-bot.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vs-dotnet/workflow-bot/workflow-bot/workflow-bot.csproj
--------------------------------------------------------------------------------
/templates/vscode-js/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/README.md
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/README.md
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/adaptiveCards/learn.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/adaptiveCards/learn.json
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/adaptiveCards/welcome.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/adaptiveCards/welcome.json
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/appPackage/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/appPackage/color.png
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/appPackage/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/appPackage/manifest.json
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/appPackage/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/appPackage/outline.png
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/config.js
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/index.js
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/infra/azure.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/infra/azure.bicep
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/infra/azure.parameters.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/infra/azure.parameters.json
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/infra/botRegistration/azurebot.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/infra/botRegistration/azurebot.bicep
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/infra/botRegistration/readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/infra/botRegistration/readme.md
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/package.json
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/teamsBot.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/teamsBot.js
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/teamsapp.local.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/teamsapp.local.yml
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/teamsapp.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/teamsapp.yml
--------------------------------------------------------------------------------
/templates/vscode-js/basic-bot/web.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-bot/web.config
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/README.md
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/appPackage/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/appPackage/color.png
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/appPackage/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/appPackage/manifest.json
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/appPackage/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/appPackage/outline.png
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/infra/azure.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/infra/azure.bicep
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/infra/azure.parameters.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/infra/azure.parameters.json
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/package.json
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/public/dashboard-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/public/dashboard-dark.png
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/public/dashboard-hc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/public/dashboard-hc.png
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/public/dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/public/dashboard.png
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/public/index.html
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/App.css
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/App.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/App.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/Privacy.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/Privacy.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/TabConfig.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/TabConfig.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/TermsOfUse.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/TermsOfUse.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/dashboards/SampleDashboard.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/dashboards/SampleDashboard.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/index.css
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/index.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/index.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/internal/addNewScopes.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/internal/addNewScopes.js
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/internal/context.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/internal/context.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/internal/login.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/internal/login.js
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/internal/singletonContext.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/internal/singletonContext.js
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/services/chartService.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/services/chartService.js
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/services/listService.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/services/listService.js
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/styles/ChartWidget.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/styles/ChartWidget.css
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/styles/ListWidget.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/styles/ListWidget.css
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/widgets/ChartWidget.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/widgets/ChartWidget.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/src/widgets/ListWidget.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/src/widgets/ListWidget.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/teamsapp.local.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/teamsapp.local.yml
--------------------------------------------------------------------------------
/templates/vscode-js/basic-dashboard/teamsapp.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-dashboard/teamsapp.yml
--------------------------------------------------------------------------------
/templates/vscode-js/basic-tab/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-tab/README.md
--------------------------------------------------------------------------------
/templates/vscode-js/basic-tab/appPackage/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-tab/appPackage/color.png
--------------------------------------------------------------------------------
/templates/vscode-js/basic-tab/appPackage/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-tab/appPackage/manifest.json
--------------------------------------------------------------------------------
/templates/vscode-js/basic-tab/appPackage/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-tab/appPackage/outline.png
--------------------------------------------------------------------------------
/templates/vscode-js/basic-tab/infra/azure.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-tab/infra/azure.bicep
--------------------------------------------------------------------------------
/templates/vscode-js/basic-tab/infra/azure.parameters.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-tab/infra/azure.parameters.json
--------------------------------------------------------------------------------
/templates/vscode-js/basic-tab/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-tab/package.json
--------------------------------------------------------------------------------
/templates/vscode-js/basic-tab/src/app.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-tab/src/app.js
--------------------------------------------------------------------------------
/templates/vscode-js/basic-tab/src/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-tab/src/static/favicon.ico
--------------------------------------------------------------------------------
/templates/vscode-js/basic-tab/src/static/scripts/teamsapp.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-tab/src/static/scripts/teamsapp.js
--------------------------------------------------------------------------------
/templates/vscode-js/basic-tab/src/static/styles/custom.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-tab/src/static/styles/custom.css
--------------------------------------------------------------------------------
/templates/vscode-js/basic-tab/src/views/hello.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-tab/src/views/hello.html
--------------------------------------------------------------------------------
/templates/vscode-js/basic-tab/teamsapp.local.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-tab/teamsapp.local.yml
--------------------------------------------------------------------------------
/templates/vscode-js/basic-tab/teamsapp.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-tab/teamsapp.yml
--------------------------------------------------------------------------------
/templates/vscode-js/basic-tab/web.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/basic-tab/web.config
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/README.md
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/appPackage/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/appPackage/color.png
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/appPackage/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/appPackage/manifest.json
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/appPackage/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/appPackage/outline.png
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/infra/azure.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/infra/azure.bicep
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/infra/azure.parameters.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/infra/azure.parameters.json
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/infra/botRegistration/azurebot.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/infra/botRegistration/azurebot.bicep
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/infra/botRegistration/readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/infra/botRegistration/readme.md
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/package.json
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/src/adaptiveCards/helloworldCommand.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/src/adaptiveCards/helloworldCommand.json
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/src/helloworldCommandHandler.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/src/helloworldCommandHandler.js
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/src/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/src/index.js
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/src/internal/config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/src/internal/config.js
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/src/internal/initialize.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/src/internal/initialize.js
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/src/teamsBot.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/src/teamsBot.js
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/teamsapp.local.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/teamsapp.local.yml
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/teamsapp.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/teamsapp.yml
--------------------------------------------------------------------------------
/templates/vscode-js/chat-command/web.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/chat-command/web.config
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/README.md
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/appPackage/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/appPackage/color.png
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/appPackage/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/appPackage/manifest.json
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/appPackage/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/appPackage/outline.png
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/config.js
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/images/AdaptiveCard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/images/AdaptiveCard.png
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/images/AtBotFromSearch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/images/AtBotFromSearch.png
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/images/AtBotInMessage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/images/AtBotInMessage.png
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/images/LinkUnfurlingImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/images/LinkUnfurlingImage.png
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/images/ShareMessage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/images/ShareMessage.png
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/images/ThreeDot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/images/ThreeDot.png
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/images/ThreeDotOnMessage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/images/ThreeDotOnMessage.png
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/index.js
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/infra/azure.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/infra/azure.bicep
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/infra/azure.parameters.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/infra/azure.parameters.json
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/infra/botRegistration/azurebot.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/infra/botRegistration/azurebot.bicep
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/infra/botRegistration/readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/infra/botRegistration/readme.md
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/package.json
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/teamsBot.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/teamsBot.js
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/teamsapp.local.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/teamsapp.local.yml
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/teamsapp.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/teamsapp.yml
--------------------------------------------------------------------------------
/templates/vscode-js/collect-form-data/web.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/collect-form-data/web.config
--------------------------------------------------------------------------------
/templates/vscode-js/customer-search-results/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/customer-search-results/README.md
--------------------------------------------------------------------------------
/templates/vscode-js/customer-search-results/appPackage/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/customer-search-results/appPackage/color.png
--------------------------------------------------------------------------------
/templates/vscode-js/customer-search-results/appPackage/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/customer-search-results/appPackage/manifest.json
--------------------------------------------------------------------------------
/templates/vscode-js/customer-search-results/appPackage/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/customer-search-results/appPackage/outline.png
--------------------------------------------------------------------------------
/templates/vscode-js/customer-search-results/config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/customer-search-results/config.js
--------------------------------------------------------------------------------
/templates/vscode-js/customer-search-results/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/customer-search-results/index.js
--------------------------------------------------------------------------------
/templates/vscode-js/customer-search-results/infra/azure.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/customer-search-results/infra/azure.bicep
--------------------------------------------------------------------------------
/templates/vscode-js/customer-search-results/infra/azure.parameters.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/customer-search-results/infra/azure.parameters.json
--------------------------------------------------------------------------------
/templates/vscode-js/customer-search-results/infra/botRegistration/azurebot.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/customer-search-results/infra/botRegistration/azurebot.bicep
--------------------------------------------------------------------------------
/templates/vscode-js/customer-search-results/infra/botRegistration/readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/customer-search-results/infra/botRegistration/readme.md
--------------------------------------------------------------------------------
/templates/vscode-js/customer-search-results/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/customer-search-results/package.json
--------------------------------------------------------------------------------
/templates/vscode-js/customer-search-results/teamsBot.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/customer-search-results/teamsBot.js
--------------------------------------------------------------------------------
/templates/vscode-js/customer-search-results/teamsapp.local.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/customer-search-results/teamsapp.local.yml
--------------------------------------------------------------------------------
/templates/vscode-js/customer-search-results/teamsapp.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/customer-search-results/teamsapp.yml
--------------------------------------------------------------------------------
/templates/vscode-js/customer-search-results/web.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/customer-search-results/web.config
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/README.md
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/appPackage/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/appPackage/color.png
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/appPackage/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/appPackage/manifest.json
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/appPackage/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/appPackage/outline.png
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/infra/azure.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/infra/azure.bicep
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/infra/azure.parameters.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/infra/azure.parameters.json
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/infra/botRegistration/azurebot.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/infra/botRegistration/azurebot.bicep
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/infra/botRegistration/readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/infra/botRegistration/readme.md
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/package.json
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/src/adaptiveCards/notification-default.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/src/adaptiveCards/notification-default.json
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/src/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/src/index.js
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/src/internal/config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/src/internal/config.js
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/src/internal/initialize.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/src/internal/initialize.js
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/src/teamsBot.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/src/teamsBot.js
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/teamsapp.local.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/teamsapp.local.yml
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/teamsapp.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/teamsapp.yml
--------------------------------------------------------------------------------
/templates/vscode-js/http-trigger-bot/web.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/http-trigger-bot/web.config
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/README.md
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/aad.manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/aad.manifest.json
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/appPackage/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/appPackage/color.png
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/appPackage/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/appPackage/manifest.json
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/appPackage/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/appPackage/outline.png
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/infra/azure.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/infra/azure.bicep
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/infra/azure.parameters.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/infra/azure.parameters.json
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/package.json
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/public/auth-end.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/public/auth-end.html
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/public/auth-start.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/public/auth-start.html
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/public/deploy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/public/deploy.png
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/public/favicon.ico
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/public/hello.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/public/hello.png
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/public/index.html
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/public/publish.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/public/publish.png
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/App.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/App.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/Context.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/Context.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/Privacy.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/Privacy.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/Tab.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/Tab.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/TabConfig.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/TabConfig.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/TermsOfUse.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/TermsOfUse.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/sample/AzureFunctions.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/sample/AzureFunctions.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/sample/CurrentUser.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/sample/CurrentUser.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/sample/Deploy.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/sample/Deploy.css
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/sample/Deploy.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/sample/Deploy.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/sample/Design.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/sample/Design.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/sample/EditCode.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/sample/EditCode.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/sample/Graph.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/sample/Graph.css
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/sample/Graph.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/sample/Graph.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/sample/PersonCardFluentUI.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/sample/PersonCardFluentUI.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/sample/PersonCardGraphToolkit.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/sample/PersonCardGraphToolkit.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/sample/ProfileCard.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/sample/ProfileCard.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/sample/Publish.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/sample/Publish.css
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/sample/Publish.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/sample/Publish.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/sample/Welcome.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/sample/Welcome.css
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/sample/Welcome.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/sample/Welcome.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/components/sample/lib/config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/components/sample/lib/config.js
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/index.css
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/src/index.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/src/index.jsx
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/teamsapp.local.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/teamsapp.local.yml
--------------------------------------------------------------------------------
/templates/vscode-js/react-with-fluent-UI/teamsapp.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/react-with-fluent-UI/teamsapp.yml
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/README.md
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/appPackage/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/appPackage/color.png
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/appPackage/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/appPackage/manifest.json
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/appPackage/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/appPackage/outline.png
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/infra/azure.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/infra/azure.bicep
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/infra/azure.parameters.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/infra/azure.parameters.json
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/infra/botRegistration/azurebot.bicep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/infra/botRegistration/azurebot.bicep
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/infra/botRegistration/readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/infra/botRegistration/readme.md
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/package.json
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/src/adaptiveCards/doStuffActionResponse.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/src/adaptiveCards/doStuffActionResponse.json
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/src/adaptiveCards/helloworldCommandResponse.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/src/adaptiveCards/helloworldCommandResponse.json
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/src/cardActions/doStuffActionHandler.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/src/cardActions/doStuffActionHandler.js
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/src/commands/helloworldCommandHandler.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/src/commands/helloworldCommandHandler.js
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/src/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/src/index.js
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/src/internal/config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/src/internal/config.js
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/src/internal/initialize.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/src/internal/initialize.js
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/src/teamsBot.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/src/teamsBot.js
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/teamsapp.local.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/teamsapp.local.yml
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/teamsapp.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/teamsapp.yml
--------------------------------------------------------------------------------
/templates/vscode-js/sequential-workflow-in-chat/web.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/sequential-workflow-in-chat/web.config
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/appPackage/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/appPackage/color.png
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/appPackage/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/appPackage/manifest.json
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/appPackage/manifest.local.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/appPackage/manifest.local.json
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/appPackage/outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/appPackage/outline.png
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/package.json
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/README.md
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/config/config.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/config/config.json
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/config/deploy-azure-storage.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/config/deploy-azure-storage.json
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/config/package-solution.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/config/package-solution.json
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/config/sass.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/config/sass.json
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/config/serve.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/config/serve.json
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/config/write-manifests.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/config/write-manifests.json
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/gulpfile.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/gulpfile.js
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/package.json
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/src/index.ts
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/HelloworldWebPart.manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/HelloworldWebPart.manifest.json
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/HelloworldWebPart.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/HelloworldWebPart.ts
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/assets/welcome-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/assets/welcome-dark.png
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/assets/welcome-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/assets/welcome-light.png
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/components/Helloworld.module.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/components/Helloworld.module.scss
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/components/Helloworld.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/components/Helloworld.tsx
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/components/IHelloworldProps.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/components/IHelloworldProps.ts
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/loc/en-us.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/loc/en-us.js
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/loc/mystrings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/src/webparts/helloworld/loc/mystrings.d.ts
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/teams/3712ac12-1487-4fa2-855a-26d25bd2964d_color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/teams/3712ac12-1487-4fa2-855a-26d25bd2964d_color.png
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/teams/3712ac12-1487-4fa2-855a-26d25bd2964d_outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/teams/3712ac12-1487-4fa2-855a-26d25bd2964d_outline.png
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/src/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/src/tsconfig.json
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/teamsapp.local.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/teamsapp.local.yml
--------------------------------------------------------------------------------
/templates/vscode-js/spfx-basic-tab/teamsapp.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/hack-together-teams/HEAD/templates/vscode-js/spfx-basic-tab/teamsapp.yml
--------------------------------------------------------------------------------