We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97e3108 commit 2523bd3Copy full SHA for 2523bd3
ScriptLoader/MonoCompiler.cs
@@ -62,7 +62,11 @@ SeekableStreamReader GetFile(SourceFile file)
62
var ass = new AssemblyDefinitionDynamic(container, dllName, $"{dllName}.dll");
63
container.SetDeclaringAssembly(ass);
64
65
- var importer = new ReflectionImporter(container, ctx.BuiltinTypes);
+ var importer = new ReflectionImporter(container, ctx.BuiltinTypes)
66
+ {
67
+ IgnoreCompilerGeneratedField = false,
68
+ IgnorePrivateMembers = false
69
+ };
70
ass.Importer = importer;
71
72
var loader = new DynamicLoader(importer, ctx);
lib/mcs.dll
-1.5 KB
0 commit comments