Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

.NET 4.5 is an in-place-upgrade and therefore replaces .NET 4.0. Consequently when I install .NET 4.5 with Visual Studio 2012 I can no longer develop applications for .NET 4.0.

As .NET 4.5 is not supported under Windows XP, how can I maintain my existing .NET 4.0 applications which still have to run under Windows XP after I installed Visual Studio 2012?

Until now I could always devlop .NET applications for every version, even .NET 1.1, as long as VS2003 was installed. I don't have a problem with Microsoft not supporting .NET 4.5 on XP, I think it's allright to cut off old stuff. But as we have still customers using Windows XP, we need to be able to create .NET 4.0 programs at the same time as .NET 4.5.

EDIT:

I just had my first incompatibility issue: I installed VS 2012 on a Windows Server 2012. I created a project targeting .NET 4.0. In blend 4.0 I create a copy of a control template of a checkbox. The generated template contains references on colors which are available only under .NET 4.5. The solution cannot be compiled any longer. However the same case works fine on my Windows 7 installation.

I assume that the installation of .NET 4.5 has replaced the control templates for my standard controls. Therefore I cannot create copies any longer.

share|improve this question
VS2012 RC does not support XP. – Hans Passant Jun 20 '12 at 20:52
@HansPassant: Thanks, I know that. But will I be able to develop applications with VS2010 for Windows XP on the same machine? Or do I have to have to separat PC's? – slfan Jun 21 '12 at 6:53

3 Answers

Ironically, it seems Mono supports much of the .NET 4.5 functionality, and that it can be installed on Windows XP.

If your need C# 5.0's async and your client refuses to upgrade it's OS, this can be an option.

share|improve this answer
1  
good point. But I want to write a WPF application which is not supported under Mono. BTW: I had my first incompatibility issue just now, I will edit my question. – slfan Nov 27 '12 at 14:19

In the meantime I have found a great blog of Scot Hanselman which answers my concerns: http://www.hanselman.com/blog/NETVersioningAndMultiTargetingNET45IsAnInplaceUpgradeToNET40.aspx

.NET 4.5 is an in-place-upgrade and replaces the .NET 4.0 CLR, but it will still be possible to create .NET 4.0 applications with Visual Studio 2012.

EDIT: I now installed the final release of VS2012. My existing .NET 4.0 projects compile and run, no problems so far. The only drawback is, it doesn't support Windows Installer Projects any longer. You can switch forward and backward between VS2010 and VS2012.

share|improve this answer

BIG EDIT: We should wait until Microsoft announces the final decision, it's not clear yet, only conclusions.

But, I think that Microsoft won't drop support for XP and Vista that easy, it appears that the matter of decreasing support is just for speed-purposes to show it to the developers.

Also, if the it comes true and Microsoft Stopped the support for XP and Vista, then you have the virtual machine as an excellent choice!

Best wishes

share|improve this answer
Did you read my question? I'm talking about .NET 4.5, once VS2012 will be released. .NET 4.0 will be replaced by 4.5. – slfan Jun 20 '12 at 21:03
Oh! Sorry! I got it wrongly. – IWIH Jun 21 '12 at 8:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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