프로그램명 변경에 따른 참조 경로 수정 필요 #1

Closed
opened 2025-06-18 09:44:13 +09:00 by kje97 · 0 comments
Owner
  • 프로젝트 폴더명을 변경함 이에 따라 참조 DLL 경로가 깨져 빌드 및 실행 불가

  • .vbproj 내 HintPath 및 .sln 파일 내 경로 수정 필요

  • 현재 작업 완료, 관련 커밋 build: 프로그램명 변경에 따른 참조 경로 수정 적용됨

  1. .vbproj 참조 변경 전
    <Reference Include="MySql.Data, Version=8.0.20.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" />
    <Reference Include="Npgsql, Version=8.0.2.0, Culture=neutral, PublicKeyToken=5d8b90d52f46fda7, processorArchitecture=MSIL">
      <HintPath>..\packages\Npgsql.8.0.2\lib\netstandard2.0\Npgsql.dll</HintPath>
    </Reference>
  1. .vbproj 참조 변경 후
  <Reference Include="MySql.Data, Version=8.0.20.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
  <HintPath>bin\Debug\MySql.Data.dll</HintPath>
  </Reference>
  1. .sln 파일 내 프로젝트 경로 변경
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.33627.172
MinimumVisualStudioVersion = 10.0.40219.1
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "ProductFunctionTester", "ProductFunctionTester\ProductFunctionTester.vbproj", "{B80318B5-EC96-4D7F-9C28-1F4A750B9F0E}"
EndProject
* 프로젝트 폴더명을 변경함 이에 따라 참조 DLL 경로가 깨져 빌드 및 실행 불가 * .vbproj 내 HintPath 및 .sln 파일 내 경로 수정 필요 * 현재 작업 완료, 관련 커밋 build: 프로그램명 변경에 따른 참조 경로 수정 적용됨 1. .vbproj 참조 변경 전 ``` <Reference Include="MySql.Data, Version=8.0.20.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" /> <Reference Include="Npgsql, Version=8.0.2.0, Culture=neutral, PublicKeyToken=5d8b90d52f46fda7, processorArchitecture=MSIL"> <HintPath>..\packages\Npgsql.8.0.2\lib\netstandard2.0\Npgsql.dll</HintPath> </Reference> ``` 2. .vbproj 참조 변경 후 ``` <Reference Include="MySql.Data, Version=8.0.20.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL"> <HintPath>bin\Debug\MySql.Data.dll</HintPath> </Reference> ``` 3. .sln 파일 내 프로젝트 경로 변경 ``` Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.5.33627.172 MinimumVisualStudioVersion = 10.0.40219.1 Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "ProductFunctionTester", "ProductFunctionTester\ProductFunctionTester.vbproj", "{B80318B5-EC96-4D7F-9C28-1F4A750B9F0E}" EndProject ```
kje97 added reference master 2025-06-18 09:44:17 +09:00
kje97 closed this issue 2025-06-18 09:45:00 +09:00
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: jionmt-sw/prod-ProductFunctionTester#1
No description provided.