프로젝트 폴더명 변경으로 인한 참조 DLL 경로 문제 발생 #1
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
프로젝트명이 변경됨에 따라 .vbproj 및 .sln 파일 내 경로가 깨져 빌드 시 참조 DLL을 찾지 못하는 문제가 발생함
특히 MySql.Data.dll 참조 경로가 기존에는 존재하지 않는 로컬 경로(C:\Program Files (x86)\MySQL\MySQL Connector Net 8.0.20...)를 가리키고 있어 오류 발생
해당 문제 해결을 위해 MySQL Connector/.NET 8.0.20 다시 설치후 경로 한번더 확인
현재 문제 해결 완료
설치 주소: https://downloads.mysql.com/archives/c-net/
문제 원인은 MySQL Connector/.NET 미설치로 인해 참조 DLL 경로(C:\Program Files (x86)...)가 존재하지 않아 발생한 것이었음.
경로 수정 없이, MySQL Connector 8.0.20 설치를 통해 해당 DLL 경로가 복구되어 문제 해결됨.
코드 수정 없이 이슈 종료.