Programming/C#
- 2018. 12. 24. 18:16
C# dll 참조할때 Debug, Release 각각 따로 참조하도록 하는 법
https://linsoo.co.kr/archives/20906
비주얼 스튜디오에서는 직접적으로 지원하는 기능은 아닌듯...
해당 프로젝트의 .csproj 파일을 연뒤
방법1
<HintPath Condition="'$(Configuration)'=='Debug'">..\External\VelcroPhysics\bin\Debug\net45\VelcroPhysics.MonoGame.dll</HintPath>
<HintPath Condition="'$(Configuration)'=='Release'">..\External\VelcroPhysics\bin\Release\net45\VelcroPhysics.MonoGame.dll</HintPath>
방법2
<HintPath>..\External\VelcroPhysics\bin\$(ConfigurationName)\net45\VelcroPhysics.MonoGame.dll</HintPath>
'Programming > C#' 카테고리의 다른 글
Winform TextBox에 숫자만 입력되도록 하기 (0) | 2019.01.13 |
---|