-
Notifications
You must be signed in to change notification settings - Fork 469
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
Fix triple slash usage of inheritdoc
.
#6718
base: main
Are you sure you want to change the base?
Fix triple slash usage of inheritdoc
.
#6718
Conversation
…heir triple slash, but not correctly providing the path to resolve the values from.
Can you fix these 2 as well? aspire/src/Aspire.Hosting.Azure.CognitiveServices/AzureOpenAIDeployment.cs Lines 37 to 51 in c0ff16d
|
There are 3 Azure ones that appear to be missed:
(Although, that EventHubs one appears misplaced. It should be on the |
Can you make sure this works as expected? This is a 2-level reference: aspire/src/Aspire.Hosting.RabbitMQ/RabbitMQContainerImageTags.cs Lines 17 to 18 in c0ff16d
|
I recently created a PR that was fixing all these. Didn't we merge release/9.0 back to main? Pretty sure I updated everything to use in both the APIs and the tags. |
Yes, that's it, check the release/9.0, it's fine there: https://github.com/dotnet/aspire/blob/release/9.0/src/Aspire.Hosting.Elasticsearch/ElasticsearchContainerImageTags.cs |
release/9.0 is fine, but the PR didn't get merged back correctly apparently (conflicts got resolved using main) #6433 |
There might be an issue with the .NET API docs. I'm investigating that and will report back. |
Description
Many of the container-based hosting integrations include an
internal
tags class, that stores the various container registry, image and tags. Since these members areinternal
the .NET Aspire API docs doesn't expose them in the rendered API docs. Nor are they available to IntelliSense.For example, see
RedisBuilderExtensions.AddRedis
Method: Remarks.To fix this, when we rely on
<inheritdoc />
we must specify thepath
(XPath) to the desired value. Before my change:After my change:
This will also fix the .NET Aspire API docs too, the next time we release.
Checklist
<remarks />
and<code />
elements on your triple slash comments?breaking-change
template):doc-idea
template):Microsoft Reviewers: Open in CodeFlow