"파일경로" 파일을 "xxx.exe"(으)로 복사할 수 없습니다. 'xxx.exe' 파일은 다른 프로세스에서 사용 중이므로 프로세스에서 액세스할 수 없습니다.
VS 버그인듯...
빌드전 이벤트에 추가
if exist "$(TargetPath).locked" del "$(TargetPath).locked"
if exist "$(TargetPath)" if not exist "$(TargetPath).locked" move "$(TargetPath)" "$(TargetPath).locked"
if exist "$(TargetDir)$(TargetName).pdb.locked" del "$(TargetDir)$(TargetName).pdb.locked"
if exist "$(TargetDir)$(TargetName).pdb" if not exist "$(TargetDir)$(TargetName).pdb.locked" move "$(TargetDir)$(TargetName).pdb" "$(TargetDir)$(TargetName).pdb.locked"
'tool > VS10' 카테고리의 다른 글
멀티프로세스 컴파일(/MP) 옵션 사용 (0) | 2015.05.27 |
---|---|
삽질 기록 (0) | 2013.08.19 |
윈도우8에서 항상 관리자 권한으로 실행 (0) | 2013.03.15 |
'미리 컴파일된 헤더' 수동 등록 (0) | 2012.12.06 |
fatal error C1083: 미리 컴파일된 헤더 파일을 열 수 없습니다. (0) | 2012.08.08 |