前阵子遇到一个情况,我自己电脑上完成的项目,拿到实验室发现实验室装的是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

VS2003到VS2002的转换<VisualStudioProject>
VS2003到VS2002的转换
VS2003到VS2002的转换    
<CSHARP
VS2003到VS2002的转换        ProjectType 
= "Local"
VS2003到VS2002的转换        ProductVersion 
= "7.10.3707"
VS2003到VS2002的转换        SchemaVersion 
= "2.0"
VS2003到VS2002的转换        ProjectGuid 
= "{20502969-7071-4065-BDB5-09EDB3C31E3C}">
VS2003到VS2002的转换

Change the product version and schemaversion to the following lines:

VS2003到VS2002的转换<VisualStudioProject>
VS2003到VS2002的转换    
<CSHARP
VS2003到VS2002的转换        ProjectType 
= "Local"
VS2003到VS2002的转换        ProductVersion 
= "7.0.9466"
VS2003到VS2002的转换        SchemaVersion 
= "1.0"
VS2003到VS2002的转换        ProjectGuid 
= "{20502969-7071-4065-BDB5-09EDB3C31E3C}">
VS2003到VS2002的转换

相关文章:

  • 2022-12-23
  • 2021-10-13
  • 2021-10-19
  • 2021-10-01
  • 2022-12-23
  • 2022-12-23
  • 2021-06-24
  • 2022-12-23
猜你喜欢
  • 2022-01-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-17
  • 2021-07-09
  • 2021-11-03
相关资源
相似解决方案