Compatibility of Visual Studio 2012 app in older OS

0

I am planning of creating a application in Visual Sudio Pro 2012 in future. I want the app to run in XP, Vista, 7 and 8. So, does the app created in Visual Studio Pro will work on these OS or not?

user157242

Posted 2012-11-14T07:53:23.960

Reputation:

Answers

2

If the application targets .Net 3.5 or 4.0, then it should be able to run on your desired operating systems (subject to having installed the framework), irrespective of the version of Windows on which it was developed. (Of course, you'd still want to test on all the platforms you're going to support)

Rowland Shaw

Posted 2012-11-14T07:53:23.960

Reputation: 3 607

You can target later versions of .NET - if you use something like ClickOnce installation it will check for and install the correct version of .NET for you. – ChrisF – 2012-11-14T08:56:56.110

1Worth noting that 4.5 is only available for Windows Vista and later, so would not work for Windows XP – Rowland Shaw – 2012-11-14T09:02:42.107

Good point, I'd forgotten that wrinkle. – ChrisF – 2012-11-14T09:04:21.003

I think I can also use .Net 3.0 with Visual Studio 2012. Am I right. I'm asking just because I have never use VB.net earlier in my life – None – 2012-11-14T13:59:12.143

Here is more information about compatibility of .Net with older OS. http://msdn.microsoft.com/library/bb822049.aspx

– None – 2012-11-14T14:05:36.607