|
How do I make my VS .Net 2003 solutions backward compatible with VS .Net 2002?
Posted by
Admin
on
Wednesday, June 18, 2003 (PST)
How do I make my VS .Net 2003 solutions backward compatible with VS .Net 2002?
|
|
This can be accomplished using a text editor to modify 2 files in the solution.
- Open the VS .Net 2003 solution (.sln) file in any text-editor. At the top, there is a line that says Microsoft Visual Studio, Format Version 8.00
- Change the 8.00 to 7.00.
- Open the VS .Net 2003 project (.vbproj) file in a text editor. Scroll
down until you see something that says ProductVersion:
- Change ProductVersion = "X.X.XXXX" to "7.0.9466"
- Change SchemaVersion = "2.0" to "1.0"
Voila! That 2003 solution is now compatible in the 2002 IDE.
|
|