to run both 3.5 and 4.0 web apps?

link|improve this question

64% accept rate
feedback

4 Answers

up vote 4 down vote accepted

I remember reading something once from Microsoft that stated:

".NET 4.0 adds in-process side-by-side compatibility with earlier versions of the Framework. This feature allows an application process to simultaneously run part of its code using the .NET Common Language Runtime (CLR) 4 and other parts using older versions of the CLR."

So to answer your question you only need both if your application uses features from both or altenatively you have separate web applications that use .NET 3.5 and .NET 4.0.

.NET 4.0 should be fine by itself, as long as you can upgrade your 3.5 applications to 4.0. This page has some useful infrmation.

Heres where I read it.

link|improve this answer
asp.net doesn't use 3.5 and 4.0 side-by-side in the same process and 4.0 provides almost all of the 3.5 features (with a few compatibility exceptions like j#) – Pent Ploompuu Apr 15 '10 at 2:18
@Pent, good point, I think I'm actually answering a different question. – Ashley Henderson Apr 15 '10 at 2:19
seems to imply you need to install 3.5 and 4.0 – Keith Nicholas Apr 15 '10 at 3:35
I'll accept this as its pretty much the right answer with a bunch of other cruft :) – Keith Nicholas Apr 15 '10 at 3:43
feedback

Only 4.0 should be enough, there could be some issues though - for example J# does not work on .net 4.0

link|improve this answer
I wanted something a little bit definite than "should". Its kind of why I asked the question.... I was thinking "It should work..." but not really 100% – Keith Nicholas Apr 15 '10 at 3:34
There also seems to be new restrictions in .NET 4.0 with regard to reflection security. You may want to test in both .NET 4.0 and a .NET 3.5 system before relying on .NET 4.0 to run your .NET 3.5 app. – jpierson May 2 '11 at 19:46
feedback

http://msdn.microsoft.com/en-us/magazine/ee819091.aspx

It appears you need to install side by side.

link|improve this answer
feedback

I found that I needed 3.5 even though I have 4 installed. Without 3.5 I was getting GfxUI has stopped working error. Despite installing the latest Intel Drivers for G41 chipset The error would persist. I then found a post which said it requires .net3.5 and as soon as I installed this I was OK. So... as previously said it all depends on the apps you have installed. If they need 3.5 then you need to install both.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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