Soenneker.GitHub.Repositories.Discussions
4.0.1558
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.GitHub.Repositories.Discussions --version 4.0.1558
NuGet\Install-Package Soenneker.GitHub.Repositories.Discussions -Version 4.0.1558
<PackageReference Include="Soenneker.GitHub.Repositories.Discussions" Version="4.0.1558" />
<PackageVersion Include="Soenneker.GitHub.Repositories.Discussions" Version="4.0.1558" />
<PackageReference Include="Soenneker.GitHub.Repositories.Discussions" />
paket add Soenneker.GitHub.Repositories.Discussions --version 4.0.1558
#r "nuget: Soenneker.GitHub.Repositories.Discussions, 4.0.1558"
#:package Soenneker.GitHub.Repositories.Discussions@4.0.1558
#addin nuget:?package=Soenneker.GitHub.Repositories.Discussions&version=4.0.1558
#tool nuget:?package=Soenneker.GitHub.Repositories.Discussions&version=4.0.1558
Soenneker.GitHub.Repositories.Discussions
Creates, lists, filters, and deletes GitHub repository discussions.
Installation
dotnet add package Soenneker.GitHub.Repositories.Discussions
Configure and register
{
"GH": {
"Token": "your-github-token"
}
}
using Soenneker.GitHub.Repositories.Discussions.Registrars;
services.AddGitHubRepositoriesDiscussionsUtilAsSingleton();
The token needs access to repository discussions and write permission for creation or deletion.
Create a discussion
await discussions.Add(
"example-org",
"example-repository",
new GitHubDiscussion
{
Title = "Release feedback",
Body = "Share feedback for the latest release.",
Category = new GitHubCategory { Id = categoryId }
},
cancellationToken);
Creation sends the discussion title, body, and category ID. A failed request throws; it is not logged as a successful creation.
List discussions
List<GitHubDiscussion> open = await discussions.GetAll(
"example-org",
"example-repository",
state: "open",
cancellationToken: cancellationToken);
GetAll() follows every page and applies the optional state filter case-insensitively. GetAllForOwner() first selects repositories with discussions enabled, honors the repository creation-date window, and then reads each repository sequentially.
Delete() and DeleteAll() permanently remove discussions. DeleteAll() first retrieves the complete discussion list and then deletes each item; a failure stops the operation and can leave earlier deletions completed.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Soenneker.Extensions.HttpClient (>= 4.0.4057)
- Soenneker.GitHub.Repositories (>= 4.0.1281)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Soenneker.GitHub.Repositories.Discussions:
| Package | Downloads |
|---|---|
|
Soenneker.GitHub.Repositories.Suite
Registers commonly used Soenneker GitHub repository services through one package |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.1566 | 0 | 9/16/2026 |
| 4.0.1565 | 0 | 9/16/2026 |
| 4.0.1564 | 0 | 9/16/2026 |
| 4.0.1563 | 0 | 9/16/2026 |
| 4.0.1562 | 7 | 9/16/2026 |
| 4.0.1561 | 75 | 9/15/2026 |
| 4.0.1560 | 34 | 9/15/2026 |
| 4.0.1559 | 114 | 9/13/2026 |
| 4.0.1558 | 82 | 9/13/2026 |
| 4.0.1557 | 84 | 9/13/2026 |
| 4.0.1556 | 76 | 9/13/2026 |
| 4.0.1554 | 105 | 9/13/2026 |
| 4.0.1553 | 86 | 9/13/2026 |
| 4.0.1552 | 96 | 9/13/2026 |
| 4.0.1551 | 75 | 9/13/2026 |
| 4.0.1550 | 93 | 9/12/2026 |
| 4.0.1549 | 90 | 9/12/2026 |
| 4.0.1548 | 87 | 9/12/2026 |
| 4.0.1547 | 91 | 9/12/2026 |
| 4.0.1546 | 81 | 9/12/2026 |
Update dependency Soenneker.Extensions.HttpClient to 4.0.4057 (#2079)