Re: [WiX-users] Using Wix and Visual Studio

2009-04-06 Thread Rob Mensching
- From: Christopher Karper [mailto:christopher.kar...@gmail.com] Sent: Friday, April 03, 2009 11:56 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Using Wix and Visual Studio Yeah, I believe that would be the problem. That's the missing piece of the puzzle

Re: [WiX-users] Using Wix and Visual Studio

2009-04-03 Thread Eric Brown (REDMOND)
[mailto:alex.ca...@apdcomms.com] Sent: Thursday, April 02, 2009 4:28 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Using Wix and Visual Studio I'm guessing that you cannot have spaces in a project reference variable... $(var.My Test Project.TargetFileName) Try renaming your test

Re: [WiX-users] Using Wix and Visual Studio

2009-04-03 Thread Christopher Karper
: Re: [WiX-users] Using Wix and Visual Studio Any characters in the project name that are invalid for WiX preprocessor variable names get automatically converted to underscores. So without renaming the project this should work: $(var.My_Test_Project.TargetFilename) -Original Message

Re: [WiX-users] Using Wix and Visual Studio

2009-04-03 Thread Eric Brown (REDMOND)
discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Using Wix and Visual Studio I use spaces in my project names and project references, and they're all fine. I suspect his problem is something else. I'm not sure what that is, since this exact scenario, even down to the environment

Re: [WiX-users] Using Wix and Visual Studio

2009-04-03 Thread Simon Dahlbacka
On Fri, Apr 3, 2009 at 8:24 PM, Eric Brown (REDMOND) eric.br...@microsoft.com wrote: Also, there is that yellow warning icon on the project reference.  I don't know what that means, and I can't find a reference in the documentation. Normally that means that Visual Studio has failed to resolve

Re: [WiX-users] Using Wix and Visual Studio

2009-04-03 Thread Christopher Karper
] Sent: Friday, April 03, 2009 10:17 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Using Wix and Visual Studio I use spaces in my project names and project references, and they're all fine. I suspect his problem is something else. I'm not sure what

Re: [WiX-users] Using Wix and Visual Studio

2009-04-03 Thread Eric Brown (REDMOND)
, 2009 11:07 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Using Wix and Visual Studio That is VS saying the reference is invalid somehow. I'm not sure what the specific problem is, but have you tried deleting the reference and recreating it? Sorry I can't

Re: [WiX-users] Using Wix and Visual Studio

2009-04-03 Thread Simon Dahlbacka
project - I get the same problem.) -Original Message- From: Christopher Karper [mailto:christopher.kar...@gmail.com] Sent: Friday, April 03, 2009 11:07 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Using Wix and Visual Studio That is VS

Re: [WiX-users] Using Wix and Visual Studio

2009-04-03 Thread Eric Brown (REDMOND)
11:22 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Using Wix and Visual Studio how does the ProjectReference tag look in your .wixproj file? On Fri, Apr 3, 2009 at 9:13 PM, Eric Brown (REDMOND) eric.br...@microsoft.com wrote: Multiple times.   It always

Re: [WiX-users] Using Wix and Visual Studio

2009-04-03 Thread Simon Dahlbacka
toolset. Subject: Re: [WiX-users] Using Wix and Visual Studio how does the ProjectReference tag look in your .wixproj file? On Fri, Apr 3, 2009 at 9:13 PM, Eric Brown (REDMOND) eric.br...@microsoft.com wrote: Multiple times.   It always comes back yellow.  There's no tooltip to provide any

Re: [WiX-users] Using Wix and Visual Studio

2009-04-03 Thread Christopher Karper
/ProjectReference -Original Message- From: Simon Dahlbacka [mailto:simon.dahlba...@gmail.com] Sent: Friday, April 03, 2009 11:22 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Using Wix and Visual Studio how does the ProjectReference tag look

Re: [WiX-users] Using Wix and Visual Studio

2009-04-03 Thread Eric Brown (REDMOND)
Installer XML toolset. Subject: Re: [WiX-users] Using Wix and Visual Studio Yeah, I believe that would be the problem. That's the missing piece of the puzzle. Chris On Fri, Apr 3, 2009 at 2:40 PM, Simon Dahlbacka simon.dahlba...@gmail.comwrote: I seem to remember that VC++ projects

Re: [WiX-users] Using Wix and Visual Studio

2009-04-02 Thread Alex Cater
I'm guessing that you cannot have spaces in a project reference variable... $(var.My Test Project.TargetFileName) Try renaming your test project to MyTestProject so the project reference variable becomes: $(var.MyTestProject.TargetFileName) -- View this message in context:

Re: [WiX-users] Using Wix and Visual Studio

2009-04-02 Thread Jason Ginchereau
...@apdcomms.com] Sent: Thursday, April 02, 2009 4:28 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Using Wix and Visual Studio I'm guessing that you cannot have spaces in a project reference variable... $(var.My Test Project.TargetFileName) Try renaming your test project to MyTestProject