Skip to content

Commit 8c599ee

Browse files
committed
Fix nested types not being made public
1 parent 26f6f9e commit 8c599ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Patching/Publicizer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ protected override bool OnTypeDefinition(TypeDefinition type)
3333
{
3434
if (type.IsNested && !type.IsNestedPublic)
3535
{
36-
type.IsNestedPrivate = true;
36+
type.IsNestedPublic = true;
3737
return true;
3838
}
3939

0 commit comments

Comments
 (0)