2010. 1. 13. 23:35 Programming/Visual Studio
error LNK1104
LINK : fatal error LNK1104: cannot open file '(...생략...).intermediate.manifest'
< error 발생 원인 >
dll파일이 생성 되는 위치를 변경 후 발생 하였다.
해결방법은 dll파일이 있는 경로로 바꿔 주면 된다.
< 해결 방법 >
- dll파일경로를 ./bin/경로로 변경 하였다고 한다면
Project -> Property -> Linker -> Manifest File -> Manifest File 에서
(기존경로).intermediate.manifest -> ./bin/(기존경로).intermediate.manifest 변경하면 된다.
- manifest파일을 생성하지 않게 하는 방법
Project -> Property -> Linker -> Manifest File -> Generate Manifest를
Yes에서 No로 변경한다.
'Programming > Visual Studio' 카테고리의 다른 글
error LNK2005: (0) | 2010.01.13 |
---|---|
error LNK2059 (0) | 2010.01.13 |
error LNK2019 fatal, error LNK1120 (0) | 2010.01.13 |
VisualStudio 메모리 누수 체크 사용하기 (0) | 2009.12.19 |
error LNK2005: 에러 (0) | 2009.12.19 |