framework compatibility check

  • Thread starter Thread starter John Devlon
  • Start date Start date
J

John Devlon

Hi,

With this post, I would like to ask a question.

I've created a small application using XP/visual studio 2008.

I would like to use it on a windows 2000 prof platform. How can I check in
visual studio if the application is backwords compatible with older
frameworks under 2000?

Thanx

John
 
John Devlon said:
Hi,

With this post, I would like to ask a question.

I've created a small application using XP/visual studio 2008.

I would like to use it on a windows 2000 prof platform. How can I check in
visual studio if the application is backwords compatible with older
frameworks under 2000?

Thanx

John


You cannot tell within visual studio. .Net 2.0 is compatible with win2k,
but 3.5 is not. .Net 3.5 requires win2k3 at a minimum. You need to look at
the downloads system requirements, such as
http://www.microsoft.com/downloads/...CB-4362-4B0D-8EDD-AAB15C5E04F5&displaylang=en
 
John Devlon said:
With this post, I would like to ask a question.

I've created a small application using XP/visual studio 2008.

I would like to use it on a windows 2000 prof platform. How can I check in
visual studio if the application is backwords compatible with older
frameworks under 2000?

You could set up a test machine inside VPC. If you are an MSDN subscriber,
you also get Windows 2000 for this purpose.
 
John,

The frameworks have to be OS independent, although there are some things
which don't work on W98 and Millennium.

Be aware that there are problems between version Net 1.1 and 2.0 so if you
have a program that is written with version 2002 or 2003 you need the
Framework 1.1 beside 3.5

Cor
 
Back
Top