Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

can .net framework 4 works on top of windows xp?

I tried to run a small application that I've written using VS2010 on my old Windows XP desktop. I got the yellow screen of death showing me a portion of the web.config with assemblies.

<compilation debug="true" targetFramework="4.0">

It looks like it didn't like the 4.0 framework. I re-wrote it, targeting 3.5 framework, this time it worked perfectly.

I'd like to know if I can install .net framework 4.0 on top of Windows XP?

Thanks for helping

like image 580
Richard77 Avatar asked Dec 12 '22 19:12

Richard77


2 Answers

The system requirements indicate that Windows XP is supported as long as you have SP3 installed.

like image 195
Greg Beech Avatar answered Dec 15 '22 09:12

Greg Beech


Yes, that's possible. .NET 4.0 works fine on Windows XP machines. Just make sure SP3 is installed first.

like image 44
msteiger Avatar answered Dec 15 '22 08:12

msteiger