Re: [WiX-users] path to framework SDK $(FrameworkSDKDir)

2014-04-09 Thread Carter Young
t; event. > Not something that can be considered native to WiX. > > Thank you anyway > > Marek > > > > -Original Message- > From: Carter Young [mailto:ecyo...@grandecom.net] > Sent: Wednesday, April 09, 2014 11:29 AM > To: wix-users@lists.sourceforge.n

Re: [WiX-users] path to framework SDK $(FrameworkSDKDir)

2014-04-09 Thread Marek Mielcarek
anyway Marek -Original Message- From: Carter Young [mailto:ecyo...@grandecom.net] Sent: Wednesday, April 09, 2014 11:29 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] path to framework SDK $(FrameworkSDKDir) See: http://stackoverflow.com/questions/20381525/wix

Re: [WiX-users] path to framework SDK $(FrameworkSDKDir)

2014-04-09 Thread Carter Young
uestion: > > What is the best way to sign MSI with a certificate ? is there a > using WiX/native solution for that ? > > Thank you > > Marek > > > > > > > > > > -Original Message- > From: Carter Young [mailto:ecyo...@grandecom.net] > S

Re: [WiX-users] path to framework SDK $(FrameworkSDKDir)

2014-04-09 Thread Marek Mielcarek
ailto:ecyo...@grandecom.net] Sent: Tuesday, April 08, 2014 4:55 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] path to framework SDK $(FrameworkSDKDir) To add to this: The only time the .NET Frameworks are ever targeted in a WiX Project is usually 1 of 2 reasons: 1. An install condition is

Re: [WiX-users] path to framework SDK $(FrameworkSDKDir)

2014-04-08 Thread Carter Young
To add to this: The only time the .NET Frameworks are ever targeted in a WiX Project is usually 1 of 2 reasons: 1. An install condition is Tested to ensure the target machine has the Required Version installed for your application. 2. If not installed, the Burn Bootstrap Engine will install i

Re: [WiX-users] path to framework SDK $(FrameworkSDKDir)

2014-04-08 Thread Michael Turner
I'm not sure what you are expecting $(FrameworkSDKDir) to point to in a .wixproj. Which version of the framework? There is no clear answer to this question within the context of a WiX project, because WiX projects do not target .NET Framework versions and do not use the .NET Framework SDK. Rathe

Re: [WiX-users] path to framework SDK $(FrameworkSDKDir)

2014-04-08 Thread Phill Hogland
I don't think this is a wix issue. When I build Wix toolset 3.8 this variable is defined. I think it relates to the version of VS, Windows SDK, and .Net being used. http://connect.microsoft.com/VisualStudio/feedback/details/811986/-frameworksdkdir-value-in-vs-macros-post-build-event-references-in

[WiX-users] path to framework SDK $(FrameworkSDKDir)

2014-04-08 Thread Marek Mielcarek
I need a path to SDK framework in post-build event. Standard VisualStudio projects support $(FrameworkSDKDir) macro but WiX 3.7 does not. Does WiX 3.8 bring support for this macro ? If not, what's the best way to get that path (aside from hard-coding) ? Thank you ---