add csharpier

This commit is contained in:
Adam Hathcock
2024-05-21 16:34:46 +01:00
parent 1734d5162a
commit e341772cbc
110 changed files with 1096 additions and 656 deletions
@@ -5,5 +5,5 @@ namespace ProxyInterfaceSourceGeneratorTests.Source;
public class MixedVisibility
{
[SuppressMessage("ReSharper", "NullableWarningSuppressionIsUsed")]
public string Foo { get; protected set; } = null!;//<- this will generate bad code
public string Foo { get; protected set; } = null!; //<- this will generate bad code
}