aspnetcore icon indicating copy to clipboard operation
aspnetcore copied to clipboard

Editor quick help link goes to generic landing page for error rather than the page for the error (Code analysis)

Open vsfeedback opened this issue 1 year ago • 0 comments

This issue has been moved from a ticket on Developer Community.


Repo Steps

  1. Open an aspire api project
  2. Add a new route with a parameter (Note: This code is incomplete but that shouldn't impact the bug indeed the help documentation gives an example of what needs to be done to complete the code.)
app. MapGet("summary/{Id}", () =>
{
    return summaryFactory.Get(Id);
});
  
  1. Hover over the `{Id}’ for the quick help
  2. Click on the help link

image.png

Expected

Open browser at the documentation for that error: https://learn.microsoft.com/en-us/aspnet/core/diagnostics/asp0018?view=aspnetcore-8.0.

Actual

Browser opens at the generic landing page https://learn.microsoft.com/en-us/aspnet/core/diagnostics/code-analysis?view=aspnetcore-8.0.


Original Comments

Feedback Bot on 6/20/2024, 06:36 PM:

(private comment, text removed)

Feedback Bot on 6/24/2024, 02:54 AM:

(private comment, text removed)


Original Solutions

(no solutions)

vsfeedback avatar Jun 28 '24 17:06 vsfeedback