MAGIC currently usesAppDomain.DefineDynamicAssembly, but that API is missing in .NET Standard. Instead we're supposed to use AssemblyBuilder.DefineDynamicAssembly. We should switch APIs the same way we did for AssemblyBuilderAccess in 2f75195.
Note that even in .NET Standard AssemblyBuilder.DefineDynamicAssembly only available in 2.1, which will bump the minimum required version to the latest.
MAGIC currently uses
AppDomain.DefineDynamicAssembly
, but that API is missing in .NET Standard. Instead we're supposed to useAssemblyBuilder.DefineDynamicAssembly
. We should switch APIs the same way we did forAssemblyBuilderAccess
in 2f75195.Note that even in .NET Standard
AssemblyBuilder.DefineDynamicAssembly
only available in 2.1, which will bump the minimum required version to the latest.