error MSB6006: “rc.exe”已退出,代码为 1

错误原因:

用VS打开在其他地方下载或拷贝的项目工程时,因为部分ico、bitmap等资源的路径在本机不存在,出现了错误  error MSB6006: “rc.exe”已退出,代码为 1。


方法:

打开工程的资源文件, xx.rc选择编辑代码,找到ico或bitmap等路径有错误的资源,将其删除或者替换本地正确的资源路径

如下的路径代码:

/
//
// Icon
//
// Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems.
   IDI_ICON1               ICON                    "F:\\Code\\VC++\\ComTestSystem\\res\\IQY.ico"   // 注释、更改或删除
/

你可能感兴趣的:(工具使用)