Does Roslyn CTP support CallerMemberNameAttribute
and others similar?
I have a method with several parameters, some obligatory, and also there is a parameter with default value, marked with CallerMemberName
attribute.
I am generating a call of this method by Roslyn, passing only obligatory parameters, and expecting it to generate values for compiler-generated parameters too, but this does not happen, they have default values.
Is this a limitation of Roslyn's current version, or I am doing something wrong?