The problem is that the header and library references in the templates include relative paths. To move your project, you need to correct these references to where they are on your local system.
Specifically, you need to change the include directories (Right click on your project > Properties > Configuration Properties > C/C++ > General > Additional include Directories) and the library directories (Right click on your project > Properties > Configuration Properties > Linker > General > Additional Library Directories).
Fixing up those directories should solve your problem. Remember you'll need to do it separately for both Debug and Release mode if you want to compile both.
Let us know if you have any problems with this.