시그v 2010. 1. 13. 23:35

 

LINK : fatal error LNK1104: cannot open file '(...생략...).intermediate.manifest'

< error 발생 원인 >

dll파일이 생성 되는 위치를 변경 발생 하였다.

해결방법은 dll파일이 있는 경로로 바꿔 주면 된다.


 < 해결 방법 >

  1. dll파일경로를  ./bin/경로로 변경 하였다고 한다면
    Project -> Property -> Linker -> Manifest File -> Manifest File 에서

(기존경로).intermediate.manifest -> ./bin/(기존경로).intermediate.manifest 변경하면 된다.

 

  1. manifest파일을 생성하지 않게 하는 방법

Project -> Property -> Linker -> Manifest File -> Generate Manifest

Yes에서 No 변경한다.