d340c6af7c
* Only generate setters and getters for public properties * .
6 lines
165 B
C#
6 lines
165 B
C#
namespace ProxyInterfaceSourceGeneratorTests.Source;
|
|
|
|
public class MixedVisibility
|
|
{
|
|
public string Foo { get; protected set; } //<- this will generate bad code
|
|
} |