Re: [WiX-users] Undefined preprocessor variable '$(var.SolutionName)'.

2014-08-02 Thread Ferdi
Yes Rob. Solved by DefineConstants / project property MySolutionName=$(SolutionName) 2014-08-01 17:52 GMT+02:00, Rob Mensching : > Are you building a solution? Solution variables are only available when > building a .sln. > > ___ > FireG

Re: [WiX-users] Undefined preprocessor variable '$(var.SolutionName)'.

2014-08-01 Thread Rob Mensching
Are you building a solution? Solution variables are only available when building a .sln. ___ FireGiant | Dedicated support for the WiX toolset | http://www.firegiant.com/ -Original Message- From: ferdi.oeztu...@accenture.c

Re: [WiX-users] Undefined preprocessor variable error message - how to get preprocessor variables working?

2011-08-19 Thread Brad Smith
Thanks for your help Kurt, it worked! -Original Message- From: Kurt Jensen [mailto:kurt.jen...@us.ophiropt.com] Sent: Thursday, 18 August 2011 8:55 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Undefined preprocessor variable error message - how

Re: [WiX-users] Undefined preprocessor variable error message - how to get preprocessor variables working?

2011-08-18 Thread Kurt Jensen
If you add a reference to your WixExample01 project then you can use $(var.WixExample01.TargetFileName),etc throughout your WiX project -Original Message- From: Brad Smith [mailto:brads...@tpg.com.au] Sent: Thursday, August 18, 2011 6:38 AM To: wix-users@lists.sourceforge.net Subject: [WiX

Re: [WiX-users] Undefined preprocessor variable '$(var.Spiricon.FactoryManager.TargetPath)'

2011-05-03 Thread Kurt Jensen
oops... you're right. the guys converting the projects to vs 2010 changed the project name... -Original Message- From: Helge Kruse [mailto:helge.kruse-nos...@gmx.net] Sent: Tuesday, May 03, 2011 12:53 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-

Re: [WiX-users] Undefined preprocessor variable '$(var.Spiricon.FactoryManager.TargetPath)'

2011-05-03 Thread Helge Kruse
Am 03.05.2011 18:30, schrieb Kurt Jensen: > The full command line contains over 70 other projects with variable > definitions all of which contain one or more "." > > None of the other $(var.Spiricon..TargetPath) is listed as an > error. > > >> -dSpiricon.Factory.Manager.TargetPath=E:\BaseI\CodeBas

Re: [WiX-users] Undefined preprocessor variable '$(var.Spiricon.FactoryManager.TargetPath)'

2011-05-03 Thread Kurt Jensen
ay, May 03, 2011 7:16 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Undefined preprocessor variable '$(var.Spiricon.FactoryManager.TargetPath)' I think it's confused because of the ".". When I create a WiX project in Visual Studio and add a reference to a

Re: [WiX-users] Undefined preprocessor variable '$(var.Spiricon.FactoryManager.TargetPath)'

2011-05-03 Thread Dick Van den Brink
I think it's confused because of the ".". When I create a WiX project in Visual Studio and add a reference to a project called Test.Project.Then i need to change the reference name (in the package project) to TestProject in order to access the variables. > From: kurt.jen...@us.ophiropt.com > D

Re: [WiX-users] Undefined Preprocessor Variable

2010-09-15 Thread pcristini
This was the key. Thanks Dave -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Undefined-Preprocessor-Variable-tp5531578p5534440.html Sent from the wix-users mailing list archive at Nabble.com. --

Re: [WiX-users] Undefined Preprocessor Variable

2010-09-15 Thread Bob Arnson
On 14-Sep-10 14:51, pcristini wrote: > I'm trying to use the variable in the main Product.wxs file and a couple > other referencing wxs files like this: > > > Any ideas why this value would not be working? Your code didn't come through. -- sig://boB http://joyofsetup.com/

Re: [WiX-users] Undefined Preprocessor Variable

2010-09-15 Thread David Watson
You need to ?include the wxi in every wix file that uses things defined in it. Dave -Original Message- From: pcristini [mailto:pcrist...@paretoplatform.com] Sent: 14 September 2010 19:51 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Undefined Preprocessor Variable I'm gettin

Re: [WiX-users] Undefined preprocessor variable error

2010-06-22 Thread Blair
Or, if you wish to avoid extraneous ";" marks: ItemOne ItemTwo $(Property);ItemTwo -Blair -Original Message- From: Elfe Xu [mailto:elf...@microsoft.com] Sent: Tuesday, June 22, 2010 5:26 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Undefined pr

Re: [WiX-users] Undefined preprocessor variable error

2010-06-22 Thread Elfe Xu
Interesting. Why is the DefineConstants different with other element suche as Property? I have a file MyProj.WIX.targets, which is used by Setupx64.wixproj and Setupx86.wixproj. So I could not have my constants definitation partially in the WIX.targets and partially in the wixproj files, according

Re: [WiX-users] Undefined preprocessor variable error

2010-06-22 Thread Castro, Edwin G. (Hillsboro)
The last property definition wins (explaining why the BinDirRoot was undefined after the reload). You need to define all of your preprocessor variables, separated by semi-colons, in the same DefineConstants definition: BinDirRoot=$(BranchBinDirRoot);SourceDirRoot=$(BranchSourceDirRoot) Ed

Re: [WiX-users] Undefined preprocessor variable

2007-08-02 Thread Chris.Rowland
: Thursday, August 02, 2007 12:05 AM To: Rowland, Chris Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Undefined preprocessor variable [EMAIL PROTECTED] wrote: When I try to compile some of the wix 3 ui files, I get errors like Just curious: What are you trying to do? If you&#x

Re: [WiX-users] Undefined preprocessor variable

2007-08-01 Thread Bob Arnson
[EMAIL PROTECTED] wrote: When I try to compile some of the wix 3 ui files, I get errors like Just curious: What are you trying to do? If you're rebuilding the entire UI extension, you need to pass the same arguments as src\ext\UIExtension\UIExtension.build. Common.wxs(15) : error CNDL0150

Re: [WiX-users] Undefined preprocessor variable

2007-08-01 Thread Mark Line
are you using code from using dark.exe? think I've seen var $(var.bannerBmp) when I've decompiled something before... if you just store the banner bitmap in a subdir called \Bitmaps\bannrbmp.bmp you should be ok you could also define your own bitmap in wix and reference that instead Hope