docs: add M365 Extensions guide for .NET - #2966
Open
Kavin (singhk97) wants to merge 2 commits into
Open
Conversation
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 50e475f7-9936-40db-9f28-b438877449c7
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new docs page for M365 Extensions in the Teams SDK docs, providing a .NET-focused guide that explains the “Teams SDK as middleware in Agents SDK” model and links to the M365ExtensionsBot sample for full context.
Changes:
- Add new in-depth guide page:
in-depth-guides/m365-extensions(C# only) with scenario-based sections. - Add C# include content with setup + scenario snippets and sample links.
- Update
missing-pages.jsonto reflect language availability for the new guide and remove an outdated missing-page entry.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| teams.md/static/missing-pages.json | Updates missing-language tracking for the new guide and cleans up an outdated entry. |
| teams.md/src/pages/templates/in-depth-guides/m365-extensions.mdx | New MDX page describing M365 Extensions concepts, scenarios, and routing behavior. |
| teams.md/src/components/include/in-depth-guides/m365-extensions/csharp.incl.md | New C# include sections: install/setup + targeted-message/cross-channel snippets + sample links. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
| @@ -0,0 +1,114 @@ | |||
| <!-- setup --> | |||
|
|
|||
| Install the M365 Extensions package alongside the Microsoft 365 Agents SDK: | |||
|
|
||
| <!-- m365-extensions-sample-link --> | ||
|
|
||
| [.NET M365 Extensions sample](https://github.com/microsoft/teams.net/tree/main/samples/M365ExtensionsBot) |
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 50e475f7-9936-40db-9f28-b438877449c7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a C# (.NET) M365 Extensions in-depth guide, with scenario snippets linked to the
M365ExtensionsBotsample.