diff --git a/packages/Teams/dotnet/Microsoft.Bot.Components.Teams.csproj b/packages/Teams/dotnet/Microsoft.Bot.Components.Teams.csproj
index 467e2a77c6..77b840a420 100644
--- a/packages/Teams/dotnet/Microsoft.Bot.Components.Teams.csproj
+++ b/packages/Teams/dotnet/Microsoft.Bot.Components.Teams.csproj
@@ -8,7 +8,7 @@
This library implements .NET support for adaptive dialogs with Microsoft Teams
https://github.com/Microsoft/botframework-components/tree/main/packages/Teams/dotnet
content
- msbot-component;msbot-action;msbot-trigger
+ bots;botframework;botbuilder;msbot-component;msbot-action;msbot-trigger;msbot-middleware
true
..\..\..\build\35MSSharedLib1024.snk
true
diff --git a/packages/Teams/dotnet/README.md b/packages/Teams/dotnet/README.md
index 7394c558dc..9128e2c1b1 100644
--- a/packages/Teams/dotnet/README.md
+++ b/packages/Teams/dotnet/README.md
@@ -12,6 +12,34 @@ Once you've installed the package using [Bot Framework Composer](https://docs.mi
Make sure you've enabled the connection to Microsoft Teams in the `Connections` tab of your `Project Settings` in Composer.
+### Usage
+
+Once installed you should find a Microsoft.Bot.Components.Team in the Components section of the config. In order to use the Single Sign On Middleware, ensure there is also a root level section titled "Microsoft.Bot.Components.Team", with useSingleSignOnMiddleware set to true and the proper Bot Oauth connectionName:
+
+```json
+ "runtimeSettings": {
+ "components": [
+ {
+ "name": "Microsoft.Bot.Components.Teams",
+ "settingsPrefix": "Microsoft.Bot.Components.Teams"
+ }
+ ],
+ ...
+ },
+
+ "Microsoft.Bot.Components.Teams":{
+ "useSingleSignOnMiddleware": true,
+ "connectionName": "TestTeamsSSO"
+ },
+
+ "CosmosDbPartitionedStorage": {
+ "authKey": "YourCosmosDbAuthKey",
+ "containerId": "YourBotStateContainer",
+ "cosmosDBEndpoint": "https://yourcosmosdb.documents.azure.com:443/",
+ "databaseId": "YourDatabaseName"
+ },
+```
+
## Learn more
Learn more about [creating bots for Microsoft Teams](https://docs.microsoft.com/microsoftteams/platform/bots/what-are-bots).