I am transferring the .Net Framework library to the .Net standard, and the compiler cannot find the main developers from System.Reflection.Emit
.
If I'm in the right place, then the API documentation states that these collectors ( MethodBuilder
, ModuleBuilder
and AssemblyBuilder
) are part of System.Reflection.Emit
.
This is project.json
for my library:
{ "version": "1.0.0-*", "buildOptions": { "debugType": "portable" }, "dependencies": {}, "frameworks": { "netstandard1.6": { "dependencies": { "NETStandard.Library": "1.6.0" } } } }
Do I need a sitelink?
source share