You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am attempting to port a project to dotnetcore, and I'm running into trouble. I previously relied upon TypeBuilder.CreateType, but I cannot seem to find it anymore. Has it been moved to another library, or is there perhaps another way to accomplish what this method used to do?
The text was updated successfully, but these errors were encountered:
'TypeBuilder' does not contain a definition for 'CreateType' and no extension method 'CreateType' accepting a first argument of type 'TypeBuilder' could be found (are you missing a using directive or an assembly reference?)
Use typeBuilder.CreateTypeInfo() instead.
Hello,
I am attempting to port a project to dotnetcore, and I'm running into trouble. I previously relied upon TypeBuilder.CreateType, but I cannot seem to find it anymore. Has it been moved to another library, or is there perhaps another way to accomplish what this method used to do?
The text was updated successfully, but these errors were encountered: