You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create basic console project with dotnet new console
Open it with VS Code code .
Update Program.cs's content to
awaitTask.Delay(TimeSpan.FromSeconds(1));
Move the text cursor to Delay, press F12, and get navigated to decompiled source/assembly metadata that reads
publicstaticTaskDelay(TimeSpandelay);
Move the text cursor to TimeSpan, press F12, and nothing happens
Expected behavior
I'm navigated to the definition of System.TimeSpan.
"Go to Definition (F12)" should work in decompiled source / assembly metadata to allow deep navigation into libraries.
This always worked in OmniSharp, but never worked with the new language server in my experience.
Actual behavior
A small box shows up that says:
No definition found for 'TimeSpan'
The text was updated successfully, but these errors were encountered:
Environment data
dotnet --info
output:VS Code version:
C# Extension version: v2.39.29
Steps to reproduce
dotnet new console
code .
Program.cs
's content toDelay
, press F12, and get navigated to decompiled source/assembly metadata that readsTimeSpan
, press F12, and nothing happensExpected behavior
I'm navigated to the definition of
System.TimeSpan
."Go to Definition (F12)" should work in decompiled source / assembly metadata to allow deep navigation into libraries.
This always worked in OmniSharp, but never worked with the new language server in my experience.
Actual behavior
A small box shows up that says:
The text was updated successfully, but these errors were encountered: