open a c# project in older version of VS .NET

  • Thread starter Thread starter Claudia Fong
  • Start date Start date
C

Claudia Fong

Hello,

I'm having problems to open a project that I made in VS 2005 in my
laptop. I have an older version installed in my laptop (VS 2000 or 2002,
I'm not sure right now).
Is there a way so I could open and run it in an older version of VS
..NET?


Cheers!

Claudi
 
You'll have to do considerable work to make it happen. The partial classes
need to be amalgamated and the solution re-built in VS2003. When that's done
you'll need to back-port all the new framework additions to the older system
too.

I just finished a consulting job in which we back-ported a large windows
forms application.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Ramuseco Limited .NET consulting
http://www.ramuseco.com

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
Back
Top