Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ against them.
| `clients/swift/` | Swift package (consumed by SwiftPM at the repo root). |
| `clients/typescript/` | npm package `@microsoft/agent-host-protocol`. |
| `clients/go/` | Go module (`ahptypes`, `ahp`, `ahpws`). |
| `clients/dotnet/` | .NET / NuGet packages (`Microsoft.AgentHostProtocol`, `.Abstractions`, `.WebSockets`). |
| `clients/dotnet/` | .NET / NuGet packages (`Microsoft.AgentHostProtocol`, `.Abstractions`). |
| `.github/workflows/` | CI and per-artifact publish pipelines. |

## Local dev loop
Expand Down
1 change: 0 additions & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,6 @@ trigger started the run.
4. Merge to `main`.
5. Tag: `git tag dotnet/v0.X.Y && git push origin dotnet/v0.X.Y`.
6. Publish the libraries (`Microsoft.AgentHostProtocol`,
`Microsoft.AgentHostProtocol.Abstractions`,
`Microsoft.AgentHostProtocol.Abstractions`) to NuGet.org. This client does
not ship its own publish automation — the maintainers wire the
`dotnet pack` + `dotnet nuget push` step into their own release pipeline,
Expand Down
7 changes: 7 additions & 0 deletions clients/dotnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,13 @@ local NuGet packages, and runs it as a native executable with
initialization, reconnect replay, subscriptions and reducers, custom generic
requests and notifications, and typed and raw inbound request handling.

## Authorship

Joshua Mouch contributed the initial first-party .NET client and the
handwritten C# reducers in [PR #206](https://github.com/microsoft/agent-host-protocol/pull/206).
The generated wire and model sources described above are separate generated
artifacts.

## Releasing

1. Bump [`VERSION`](VERSION).
Expand Down