Is there a setting somewhere that disables this feature? I am coding a .NET 7 assembly, and if I run code like this:
(string Name, int Age) tuple1 = ("Name1", 25);
tuple1.GetType().GetCustomAttributes().Dump();
It does not have the attribute present.