Skip to content
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 badly formed deprecation xml comments #10233

Merged
merged 1 commit into from
Jun 14, 2024

Conversation

JanKrivanek
Copy link
Member

Fixes https://github.com/orgs/dotnet/projects/117/views/21?pane=issue&itemId=67244195

Context

The deprecation messages have <xref> tag within <summary> tag - this is invalid. A CDATA or <see> tag should have been used instead

Changes Made

Bulk replaced the invalid xmls in <summary> sections:

    /// <xref:Microsoft.Build.Construction>
    /// <xref:Microsoft.Build.Evaluation>
    /// <xref:Microsoft.Build.Execution>

with

 <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
  ...

@JanKrivanek JanKrivanek requested a review from ghogen June 13, 2024 05:51
@JanKrivanek JanKrivanek merged commit a9efffc into dotnet:main Jun 14, 2024
10 checks passed
@JanKrivanek JanKrivanek mentioned this pull request Sep 6, 2024
31 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants