.net – Is it safe to install .Net 3.5 SP1 after .Net 4.0 RC has already been installed

net

I have a Build Agent that was only dealing in .Net 4.0 RC stuff, and so only had .Net 2.0 (natively) and 4.0 (manually) versions installed.

It now needs to support stuff compiled against 3.5 SP1. Does anyone know if I'm asking for trouble trying to install 3.5 SP1 after 4.0 RC has already been installed?

Thanks in advance.

Best Answer

All the versions of the .NET framework can be installed safely side by side. The only way you will get yourself into trouble is if you try to install different releases of the same framework version side by side (e.g. .NET 4 Beta 2 and .NET 4 RC 1 side by side).

Related Topic