Skip to content

Commit

Permalink
Fix Asm builder access level
Browse files Browse the repository at this point in the history
  • Loading branch information
Michannne committed Apr 30, 2019
1 parent e5f9627 commit 70401cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GraphQL-Core/CSharpClassBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace GraphQLCore
/// </summary>
public static class GraphQLCoreTypeWrapperGenerator
{
private static AssemblyBuilder asmBuilder = AssemblyBuilder.DefineDynamicAssembly(CreateDynamicAssemblyName(), AssemblyBuilderAccess.Run);
public static AssemblyBuilder asmBuilder = AssemblyBuilder.DefineDynamicAssembly(CreateDynamicAssemblyName(), AssemblyBuilderAccess.Run);
private static ModuleBuilder mdBuilder = null;
private static string typeNameAppend = "GQLCoreTypeWrapper";
private static string asmNameAppend = "._Hidden_GraphQLCoreDynamicTypes";
Expand Down

0 comments on commit 70401cc

Please sign in to comment.