Re: [WiX-users] undefined variables

2009-12-17 Thread Steve Lessard
'$(var.IDoNotExist)'. Sascha On Fri, Dec 18, 2009 at 3:22 PM, Steve Lessard wrote: > Is it me or is the preprocessor example at > http://wix.sourceforge.net/manual-wix3/preprocessor.htm misleading? > > > > It c

[WiX-users] ifdef, if, elseif and more...

2009-12-17 Thread Steve Lessard
After reading the preprocessor documentation I didn't see any mention of this, but I figured I'd ask anyways. Is there any support for an expression like ? Example usage of this hypothetical expression: ---

[WiX-users] undefined variables

2009-12-17 Thread Steve Lessard
Is it me or is the preprocessor example at http://wix.sourceforge.net/manual-wix3/preprocessor.htm misleading? It contains this snippet of code: Doesn't this falsely imply that this example should also work? --

[WiX-users] Hidden files and folders

2009-10-13 Thread Steve Lessard
I know how to install a file as a hidden file using the Hidden attribute as shown below. What I would like to know id how do I create a directory that is itself a hidden directory? Thanks -SteveL HOWTO install a file as a hidden file: -

[WiX-users] requiring .NET 3.5 or greater

2009-09-18 Thread Steve Lessard
I read this thread on how to check for .NET 4.0 http://n2.nabble.com/Using-WiX-with-Net-4-0-td3385006.html. What I would like to do is check for .NET 3.5 SP1 or greater. How do I accomplish this? -- Come build with us!

Re: [WiX-users] packa...@installerversion

2009-09-02 Thread Steve Lessard
users] packa...@installerversion >> I thought this property is used to enforce the minimum version of Windows Installer required to run the MSI. Yes that is correct. The number is calculated as major * 100 + minor. So 2.0 is 200, 3.0 is 300, 4.5 is 405 and 5.0 is 500. Neil ---

Re: [WiX-users] packa...@installerversion

2009-09-01 Thread Steve Lessard
s/library/aa370570(VS.85).aspx) (aka, the Minimum Installer Version) of MSI files. According to (http://msdn.microsoft.com/en-us/library/aa372045(VS.85).aspx) it is of type VT_I4 (aka 32-bit signed integer). -----Original Message- From: Steve Lessard [mailto:sless...@microsoft.com] Sent: Mond

[WiX-users] packa...@installerversion

2009-08-31 Thread Steve Lessard
The WiX documentation for the packa...@installerversion attribute is a little vague. I've been searching for a better definition but have come up blank. Where can I find a list of known values for the packa...@installerversion attribute?