Rhino required fixes (#9)

* add fixes for structs

* handle null non-nullables to nullable nulls

* test fix

* add enum test even if it's gross looking

* generate nullable adapt when needed

* fix adapter tests

* don't generate static events

* fmt

* mark for release
This commit is contained in:
Adam Hathcock
2024-06-18 13:04:08 +01:00
committed by GitHub
parent 4c8bb894c6
commit c71fc31132
16 changed files with 476 additions and 68 deletions
@@ -0,0 +1,6 @@
namespace ProxyInterfaceSourceGeneratorTests.Source;
public partial interface IFooNotNullable
{
public void Test(FooEnumImplement z = FooEnumImplement.Y, IEnumerable<string>? v = null) { }
}