Question: I need to create, using ILASM.EXE, framework 2.0 assemblies.

So far, I have seen that fw 2 ilasm: creates 2.0 assembies. FW 4 ilasm, on the other hand: creates 4.0 assemblies.

So far I am cool.

Now I need to know: is there a way (perhaps an argument) that can be used to make fw 4 ilasm to create fw 2 assemblies?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 2 down vote accepted

.NET 4 cannot target .NET 3.5 or .NET 2.0, that's why if you want to compile .NET 2.0 or 3.5 assemblies, with visual studio 2010, you need to also have .NET 3.5 installed.

http://msdn.microsoft.com/en-us/library/bb398197(VS.100).aspx

link|improve this answer
My mistake, it only requires that .NET 3.5 is intstalled – John Weldon Jul 5 '10 at 20:55
No, you don't need VS 2008 to do so: weblogs.asp.net/scottgu/archive/2009/08/27/… – 0xA3 Jul 5 '10 at 20:55
I was wrong that VS2010 required VS2008 to compile .NET 3.5 or 2.0, however it is true that .NET 4 cannot generate .NET 3.5 or 2.0 assemblies. – John Weldon Jul 5 '10 at 20:57
Thanks. I thought so, but who knows.... – Daniel Dolz Jul 5 '10 at 21:03
I must say, on the other hand, that ILDASM has no problem in any direction. – Daniel Dolz Jul 5 '10 at 21:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.