Files
awesome-copilot/skills/microsoft-agent-framework/references/dotnet.md
Aaron Powell 9272be1a8d Duplicate review (#1001)
* Removing a codex-specific agent (model deprecated) and removing model from blueprint mode

* Combining skills into a single skill with an internal decision tree

* Converting agents to skill with decision tree

Closes #998

* Converting agents to skill with decision tree"
Fixes #999
2026-03-16 10:27:54 +11:00

912 B

Microsoft Agent Framework for .NET

Use this reference when the target project is written in C# or another .NET language.

Authoritative sources

Installation

For new projects, install the package with:

dotnet add package Microsoft.Agents.AI

.NET-specific guidance

  • Use async/await patterns consistently for agent operations and workflow execution.
  • Follow .NET type-safety and dependency-injection conventions.
  • Keep service registration, configuration, and authentication aligned with standard .NET hosting patterns.
  • Use middleware, context providers, and orchestration components idiomatically within the .NET application model.
  • Check the latest .NET samples before introducing new APIs or workflow patterns.