In my Visual Studio Community 2022, Codelens doesn't show options related to git.
Tools > Options > Text Editor > All Languages > CodeLens
My visaul studio doesn't have these options.
- Show Timeline (Git)
- Show Authors & Changes (Git)
It shows "0 references" on classes and methods but not "git changes and author"(0 changes | 0 authors)
0 refernces // but not show => 0 changes | 0 authors
public void HelloWord()
{
Console.WriteLine("Hello Word");
}
I want it to be so.
0 refernces | 0 changes | 0 authors
public void HelloWord()
{
Console.WriteLine("Hello Word");
}
Question : What do I have to do?