VS2003到VS2002的转换

前阵子遇到一个情况,我自己电脑上完成的项目,拿到实验室发现实验室装的是VS2002,无法打开。
今天看CODEPROJECT时看到有介绍如何从VS2003转换到VS2002。

其实很简单,只要修改两个文件就可以了。把原文拿过来一下吧


Solution

The steps to be taken are as follows :-

解决方案

采取以下步骤:

1. Modify the Solution Files

Change the first line of the solution files from Microsoft Visual Studio Solution File, Format Version 8.00 to Microsoft Visual Studio Solution File, Format Version 7.00

1.修改解决方案文件

把解决方案文件的首行从Microsoft Visual Studio Solution File, Format Version 8.00Microsoft Visual Studio Solution File, Format Version 7.00

2. Modify the Project Files

VS2003 has this format

<VisualStudioProject>

    
<CSHARP
        ProjectType 
= "Local"
        ProductVersion 
= "7.10.3707"
        SchemaVersion 
= "2.0"
        ProjectGuid 
= "{20502969-7071-4065-BDB5-09EDB3C31E3C}">

Change the product version and schemaversion to the following lines:

<VisualStudioProject>
    
<CSHARP
        ProjectType 
= "Local"
        ProductVersion 
= "7.0.9466"
        SchemaVersion 
= "1.0"
        ProjectGuid 
= "{20502969-7071-4065-BDB5-09EDB3C31E3C}">
posted @ 2005-07-29 22:24  怀沙  阅读(978)  评论(2编辑  收藏  举报