Hey, On Mon, Oct 10, 2011 at 1:24 PM, victor_k <[email protected]> wrote: > I have an .net 1.1 assembly. I want change some types visibility from > internal to public for testing. But when I make changes and save > assembly it changes target framework to .net 2.0. What can I do to > save in .net 1.1?
You have to set the TargetRuntime to NET_1_1, and change the version of .net assembly referenced accordingly. We could help you more easily if you show some code. > I use Mono.Cecil 0.6 as last version which support .net 1.1 Cecil 0.9 support .net 1.1 assemblies, but it needs to run on .net 2 or bigger. So if you're only manipulating assemblies and executing them on another setup, you can use 0.9 without any issue. Best, Jb -- -- mono-cecil
