天天看点

VC2005 转换成 VC2003

今天看到一篇博文,说如何把VC2005工程转VC2003

其实用手工完成也很简单。文章最后将给出方法。先把博文转载如下。

今天在老外的网站上找到一个小工具 testConvert.exe, 能把VC2005的工程转换为VC2003,实在是爽,而且还给了源码。。哈哈 http://dl2.csdn.net/down4/20070718/18143940621.zip

举个例子

D:/dx9/ 目录下 有 xxx.vcproj,是VC2005生成的

进入cmd控制台,

testConvert d:/dx9/***.vcproj

ok,就行了。

// code

VC2005 转换成 VC2003

#include  " stdafx.h "

VC2005 转换成 VC2003

#include  < atlrx.h >

VC2005 转换成 VC2003

#include  < string >

VC2005 转换成 VC2003

using   namespace  std;

VC2005 转换成 VC2003
VC2005 转换成 VC2003

int  _tmain( int  argc, _TCHAR *  argv[])

VC2005 转换成 VC2003

{

VC2005 转换成 VC2003

    if(2 != argc){

VC2005 转换成 VC2003

        cout << " usage : theExe <file>" << endl;

VC2005 转换成 VC2003

        return -1;

VC2005 转换成 VC2003

    }

VC2005 转换成 VC2003
VC2005 转换成 VC2003

    //read file to memory

VC2005 转换成 VC2003

    string strProject = argv[1];

VC2005 转换成 VC2003

    FILE* fp = NULL;

VC2005 转换成 VC2003

    if(NULL == (fp = fopen(strProject.c_str(), "r"))){

VC2005 转换成 VC2003

        cout << " cannot find the project" << endl;

VC2005 转换成 VC2003

        return -1;

VC2005 转换成 VC2003

    }

VC2005 转换成 VC2003
VC2005 转换成 VC2003

    string strText;

VC2005 转换成 VC2003
VC2005 转换成 VC2003

    while(!feof(fp)){

VC2005 转换成 VC2003

        strText += fgetc(fp);

VC2005 转换成 VC2003

    }

VC2005 转换成 VC2003
VC2005 转换成 VC2003

    fclose(fp);

VC2005 转换成 VC2003
VC2005 转换成 VC2003

    //replace it

VC2005 转换成 VC2003

    CAtlRegExp<> oRegExp;

VC2005 转换成 VC2003

    oRegExp.Parse("Version="[7-9].[0-9]0"");

VC2005 转换成 VC2003
VC2005 转换成 VC2003

    CAtlREMatchContext<> oMatchContext;

VC2005 转换成 VC2003

    if (!oRegExp.Match(strText.c_str(), &oMatchContext))

VC2005 转换成 VC2003

    {

VC2005 转换成 VC2003

        cout << " invalidate format" << endl;

VC2005 转换成 VC2003

        return -1;

VC2005 转换成 VC2003

    }

VC2005 转换成 VC2003
VC2005 转换成 VC2003

    string strNewText = strText.substr(0, strText.size() - lstrlen(oMatchContext.m_Match.szStart)) + "Version="7.00"" + 

VC2005 转换成 VC2003

        strText.substr(strText.size() - lstrlen(oMatchContext.m_Match.szEnd), -1);

VC2005 转换成 VC2003
VC2005 转换成 VC2003

    //backup

VC2005 转换成 VC2003

    string strBackProject = strProject + "_old";

VC2005 转换成 VC2003

    CopyFile(strProject.c_str(), strBackProject.c_str(),FALSE);

VC2005 转换成 VC2003
VC2005 转换成 VC2003

    //dump it to disk

VC2005 转换成 VC2003

    if(NULL == (fp = fopen(strProject.c_str(), "r+"))){

VC2005 转换成 VC2003

        cout << " cannot find the project" << endl;

VC2005 转换成 VC2003

        return -1;

VC2005 转换成 VC2003

    }

VC2005 转换成 VC2003
VC2005 转换成 VC2003

    fwrite(strNewText.c_str(),1,strNewText.size() - 1, fp);

VC2005 转换成 VC2003
VC2005 转换成 VC2003

    fclose(fp);

VC2005 转换成 VC2003
VC2005 转换成 VC2003

    return 0;

VC2005 转换成 VC2003

} 我经常使用的手工转换方法。 其实只要修改两个文件就可以了。 1是.sln,记事本打开项目的sln文件,修改Format Version 9.00 为 Format Version 8.00 然后是.vcproj文件,修改Version="8.00"为Version="7.10" 这样就可以用VC2003打开VC2005的工程项目了。

继续阅读