Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Replacement of AssemblyBuilder.DefineDynamicAssembly in .NET Core

How do I port the following code to .NET Core?

AppDomain.CurrentDomain.DefineDynamicAssembly(                 new AssemblyName(                     Guid.NewGuid().ToString()),                     AssemblyBuilderAccess.RunAndSave); 

Is it possible?

like image 334
MaGu Avatar asked Apr 29 '16 11:04

MaGu


1 Answers

Add this to your project.json:

"dependencies": {     "System.Reflection.Emit": "4.0.1"  }, 

and use:

AssemblyBuilder.DefineDynamicAssembly(new AssemblyName(Guid.NewGuid().ToString()),             AssemblyBuilderAccess.Run); 

AssemblyBuilderAccess.RunAndSave is not supported at the moment - link to source.


For new .csproj projects, use:

<ItemGroup>   <PackageReference Include="System.Reflection.Emit" Version="4.3.0" /> </ItemGroup> 
like image 116
Mike Avatar answered Sep 29 '22 13:09

Mike