今天看到一篇博文,說如何把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
#include " stdafx.h "
#include < atlrx.h >
#include < string >
using namespace std;
int _tmain( int argc, _TCHAR * argv[])
{
if(2 != argc){
cout << " usage : theExe <file>" << endl;
return -1;
}
//read file to memory
string strProject = argv[1];
FILE* fp = NULL;
if(NULL == (fp = fopen(strProject.c_str(), "r"))){
cout << " cannot find the project" << endl;
return -1;
}
string strText;
while(!feof(fp)){
strText += fgetc(fp);
}
fclose(fp);
//replace it
CAtlRegExp<> oRegExp;
oRegExp.Parse("Version="[7-9].[0-9]0"");
CAtlREMatchContext<> oMatchContext;
if (!oRegExp.Match(strText.c_str(), &oMatchContext))
{
cout << " invalidate format" << endl;
return -1;
}
string strNewText = strText.substr(0, strText.size() - lstrlen(oMatchContext.m_Match.szStart)) + "Version="7.00"" +
strText.substr(strText.size() - lstrlen(oMatchContext.m_Match.szEnd), -1);
//backup
string strBackProject = strProject + "_old";
CopyFile(strProject.c_str(), strBackProject.c_str(),FALSE);
//dump it to disk
if(NULL == (fp = fopen(strProject.c_str(), "r+"))){
cout << " cannot find the project" << endl;
return -1;
}
fwrite(strNewText.c_str(),1,strNewText.size() - 1, fp);
fclose(fp);
return 0;
} 我經常使用的手工轉換方法。 其實隻要修改兩個檔案就可以了。 1是.sln,記事本打開項目的sln檔案,修改Format Version 9.00 為 Format Version 8.00 然後是.vcproj檔案,修改Version="8.00"為Version="7.10" 這樣就可以用VC2003打開VC2005的工程項目了。