Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Convert a VS 2003 solution into VS 2002 format

Managing Projects & Solutions

Convert a VS 2003 solution into VS 2002 format

by  chiph  Posted    (Edited  )
If you open a .NET Solution file and get the "not a valid solution" message, it's likely that it was created in VS 2003 and you are trying to open it with VS 2002. To work around the problem, just do this:

1) Go into the solution file in a text editor and replace the line:

Microsoft Visual Studio Solution File, Format Version 8.00

with

Microsoft Visual Studio Solution File, Format Version 7.00

2) Go into each project file in a text editor and replace the lines:

ProductVersion = "7.10.3077"
SchemaVersion = "2.0"

with

ProductVersion = "7.0.9466"
SchemaVersion = "1.0"

3) Now go open the solution as usual.

Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top