supportedRuntime 설정을 위한 app.config Transformation
supportedRuntime을 이용하게 되면,
supportedRuntime 옵션과 System.BadImageFormatException 예외
; https://www.sysnet.pe.kr/2/0/1233
다중 닷넷 플랫폼을 지원할 수 있지만,
<?xml version="1.0"?>
<configuration>
<startup>
<supportedRuntime version="v4.0.30319"/>
<supportedRuntime version="v2.0.50727"/>
</startup>
</configuration>
.NET 4.0이 설치된 환경에서 Visual Studio로 디버깅을 할 때마다 startup을 주석처리해야만 정지점(Breakpoint)이 정상적으로 동작하게 됩니다.
Visual Studio 디버깅 - Unable to break execution. This process is not currently executing the type of code that you selected to debug.
; https://www.sysnet.pe.kr/2/0/1278
근데, 이게 여간 귀찮은 일이 아닙니다. 게다가 가끔씩 수정해놓고는 돌려놓는 것을 잊어버려 체크인 하는 불상사가 발생하기도 했고. ^^;
이 문제를 해결할 수 있는 방법이 아래의 글에 있습니다.
app.config Transformation - 소개
; https://blog.naver.com/xyz37/50192634876
web.config의 변환을 일반적인 app.config에도 적용해주는 Visual Studio 확장 프로그램인 "Configuration Transform"의 도움을 받으면 됩니다.
Configuration Transform
; http://visualstudiogallery.msdn.microsoft.com/579d3a78-3bdd-497c-bc21-aa6e6abbc859
그래서 디버그인 경우에만 startup 설정을 없앨 수 있도록 다음과 같은 구성을 해주면 끝!
<?xml version="1.0"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<startup>
<supportedRuntime xdt:Transform="RemoveAll" />
</startup>
</configuration>
이후부터는 F5를 눌러 디버그할 때마다 supportedRuntime 설정이 없는 상태에서 실행되는 반면, 릴리스하기 위해 빌드 서버에서 생성되는 배포본에는 supportedRuntime이 보존되어 있어 안전하게 패키징할 수 있습니다. ^^
[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]