Using VS main.
Repro:
- Create a console app,
- Multi-target it to a few frameworks
- Set program.cs to:
var r = new Record("My Record Title");
Console.WriteLine(r.PrimaryConstructorParametrr);
var r2 = new Record2();
Console.WriteLine(r2.Property);
public record Record(string? PrimaryConstructorParametrr);
public record Record2()
{
public string? Property { get; init; }
}
- Run find all refs on the primary constructor parameter, and the property, and observe the difference.
Actual:
1 result per target framework for the primary constructor parameter

Expected:
Would be good if duplicate results were combined.