-
Notifications
You must be signed in to change notification settings - Fork 581
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added XML docs to the AddServiceDefaults and other extensions methods. #8180
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds XML documentation comments to the ServiceDefaults extension methods across multiple projects for improved developer guidance. The changes include adding summaries and parameter descriptions to:
- AddServiceDefaults
- ConfigureOpenTelemetry
- AddOpenTelemetryExporters (private)
- AddDefaultHealthChecks
- MapDefaultEndpoints
Reviewed Changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated no comments.
Show a summary per file
File | Description |
---|---|
playground/seq/Seq.ServiceDefaults/Extensions.cs | Added XML docs to all extension methods. |
playground/Playground.ServiceDefaults/Extensions.cs | Added XML docs to all extension methods. |
src/Aspire.ProjectTemplates/templates/aspire-starter/9.2/Aspire-StarterApplication.1.ServiceDefaults/Extensions.cs | Added XML docs to all extension methods. |
src/Aspire.ProjectTemplates/templates/aspire-empty/9.1/AspireApplication.1.ServiceDefaults/Extensions.cs | Added XML docs to all extension methods. |
playground/TestShop/TestShop.ServiceDefaults/Extensions.cs | Added XML docs to all extension methods. |
tests/TestingAppHost1/TestingAppHost1.ServiceDefaults/Extensions.cs | Added XML docs to all extension methods. |
src/Aspire.ProjectTemplates/templates/aspire-empty/9.2/AspireApplication.1.ServiceDefaults/Extensions.cs | Added XML docs to all extension methods. |
src/Aspire.ProjectTemplates/templates/aspire-servicedefaults/9.1/Extensions.cs | Added XML docs to all extension methods. |
src/Aspire.ProjectTemplates/templates/aspire-servicedefaults/9.2/Extensions.cs | Added XML docs to all extension methods. |
src/Aspire.ProjectTemplates/templates/aspire-starter/9.1/Aspire-StarterApplication.1.ServiceDefaults/Extensions.cs | Added XML docs to all extension methods. |
Comments suppressed due to low confidence (1)
playground/seq/Seq.ServiceDefaults/Extensions.cs:17
- The XML summary for AddServiceDefaults mentions 'service discovery' and 'HTTP client defaults', but the method implementation only configures OpenTelemetry and health checks. Consider updating the documentation to accurately reflect the implemented functionality.
/// Adds default services to the host application builder, including OpenTelemetry configuration, default health checks, service discovery, and HTTP client defaults.
@dotnet-policy-service agree |
Description
Added XML docs to these extension methods.
AddServiceDefaults<TBuilder>(this TBuilder builder)
ConfigureOpenTelemetry<TBuilder>(this TBuilder builder)
AddOpenTelemetryExporters<TBuilder>(this TBuilder builder)
AddDefaultHealthChecks<TBuilder>(this TBuilder builder)
MapDefaultEndpoints(this WebApplication app)
Fixes #4079
Checklist
<remarks />
and<code />
elements on your triple slash comments?breaking-change
template):doc-idea
template):