Click to See Complete Forum and Search --> : VS.Net 2002 and 2003
anandam2000
December 5th, 2003, 04:50 AM
HI,
What is the version of the project for VS.Net 2002 and VS.Net2003.
If version is 7.10, then what is the environment used for the same ??
I have a Visual Studion solution File Format version 8.00 with the Project version 7.10.
I have installed VS.Net2002 and tried to compile the same, but it gave me error "Your project file version is "7.10". Visual Studio.Net can only load version 7.0 project files".
How to compile this program?? Any help..
TIA
Anupam
vicodin451
December 5th, 2003, 07:51 AM
Originally posted by anandam2000
HI,
What is the version of the project for VS.Net 2002 and VS.Net2003.
If version is 7.10, then what is the environment used for the same ??
I have a Visual Studion solution File Format version 8.00 with the Project version 7.10.
I have installed VS.Net2002 and tried to compile the same, but it gave me error "Your project file version is "7.10". Visual Studio.Net can only load version 7.0 project files".
How to compile this program?? Any help..
TIA
Anupam
VS.NET 2002 produces .sln files with the following:
Microsoft Visual Studio Solution File, Format Version 7.00
and .vcproj files with the following:
<?xml version="1.0" encoding = "Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="7.00"
VS.NET 2003 produces .sln files with the following:
Microsoft Visual Studio Solution File, Format Version 8.00
and .vcproj files with the following:
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="7.10"
You can change the version of .SLN files created with VS.NET 2003 from version 8.00 to version 7.00 using notepad or any text editor.
You can change the version of .VCPROJ files created with VS.NET 2003 from version 7.10 to version 7.00, also using notepad or any text editor.
VS.NET 2002 should then be able to open the project...
anandam2000
December 8th, 2003, 03:28 AM
Hi vicodin451,
Thanks for your response. Really your help is appreciated.
Regards
Anupam
codeguru.com
Copyright WebMediaBrands Inc., All Rights Reserved.