C++ – ‘Could not find project configuration’ build error

buildvisual c++visual-studio-2005

I'm getting the build error 'error VCBLD0007: Could not find project configuration RELEASE|X64 to build.' when attempting to build in that configuration. Release|Win32 works fine. The configuration definitely does exist in the project. I'm building with vcbuild in VS2005 and running on a x64 box.

Anyone have a hint?

Best Answer

I think your error sounds like one I had a while ago. It turned out to be that we had forgotten to install the 64 bit options when we installed. One way to test was to rerun the installer and choose the change or remove and see if the 64 bit options are already installed or not.

Related Topic