Dynamically creating an assembly targeting a specific .NET runtime using Reflection.Emit

Viewed 469

I'm using Reflection.Emit to develop a tool that dynamically creates an Assembly at runtime.

The tool is targeting the .NET 4.5 framework.

I'd like to know if it's possible to specify which .NET runtime the dynamically generated assembly targets (e.g: specify that a .NET 3.5 assembly will be created, for example).

1 Answers
Related