Re: [WiX-users] debug a C++ Custom Action Project in VS 2010

2012-08-01 Thread Rob Mensching
examples? > > > > > > Thanks > > > > > > -----Original Message----- > > > From: Neil Sleightholm [mailto:n...@x2systems.com] > > > Sent: 31 July 2012 15:52 > > > To: General discussion for Windows Installer XML toolset. > &

Re: [WiX-users] debug a C++ Custom Action Project in VS 2010

2012-07-31 Thread Adam Kadzban
> > Thanks > > > > -Original Message- > > From: Neil Sleightholm [mailto:n...@x2systems.com] > > Sent: 31 July 2012 15:52 > > To: General discussion for Windows Installer XML toolset. > > Subject: Re: [WiX-users] debug a C++ Custom Action Project in

Re: [WiX-users] debug a C++ Custom Action Project in VS 2010

2012-07-31 Thread Steven Bone
inal Message- > From: Neil Sleightholm [mailto:n...@x2systems.com] > Sent: 31 July 2012 15:52 > To: General discussion for Windows Installer XML toolset. > Subject: Re: [WiX-users] debug a C++ Custom Action Project in VS 2010 > > I am aware of 3 methods: > 1. Set the env

Re: [WiX-users] debug a C++ Custom Action Project in VS 2010

2012-07-31 Thread Neil Sleightholm
or Windows Installer XML toolset. Subject: Re: [WiX-users] debug a C++ Custom Action Project in VS 2010 I am aware of 3 methods: 1. Set the environment variable MsiBreak to the name of the custom action 2. Call DebugBreak() 3. Use __asm { int 3 } In all cases this will cause a dialog to appear wh

Re: [WiX-users] debug a C++ Custom Action Project in VS 2010

2012-07-31 Thread Natalie Carr
XML toolset. Subject: Re: [WiX-users] debug a C++ Custom Action Project in VS 2010 I am aware of 3 methods: 1. Set the environment variable MsiBreak to the name of the custom action 2. Call DebugBreak() 3. Use __asm { int 3 } In all cases this will cause a dialog to appear which allows you to

Re: [WiX-users] debug a C++ Custom Action Project in VS 2010

2012-07-31 Thread Neil Sleightholm
I am aware of 3 methods: 1. Set the environment variable MsiBreak to the name of the custom action 2. Call DebugBreak() 3. Use __asm { int 3 } In all cases this will cause a dialog to appear which allows you to attach VS to the process. Have you tried these? Neil -Original Message