문제

Can Anyone point out the steps involved in debugging a WiX Custom Burn Bootstrapper ?

I have my MSI working clean. But when I use it with Burn bootstrapper, the custom actions defer and create problems. I want to just debug my bootstrapper with VS2012.

도움이 되었습니까?

해결책

Rob Mensching describes the proper way in this answer.

Alternatively, you could use the following:

  • The bootstrapper creates logs in your user's temp directory, ex: C:\Users\[username]\AppData\Local\Temp

  • Run your boostrapper and attach the debugger to your setup.exe.

  • Call Debugger.Launch() (from the System.Diagnostics namespace) in your code to launch your debugger during runtime.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top