|
From: Dennis P. <den...@gm...> - 2012-08-16 10:52:52
|
I'm wondering, how to include a configuration-dependent project output in
WiX Setup Project? For example, let's look at Visual Studio solution with
one .NET application and one Wix Setup Project.
I've added a reference to .NET app in Setup project and created component
in setup source:
<Component Guid="EB0CBC32-5AE5-41B3-A343-FEBE044AC30A">
<File Source="$(var.MyApp.TargetPath)" KeyPath="yes"/>
</Component>
So, I expect, that WiX will include a *release* version of MyApp in its *
release* setup msi, and debug version in debug msi respectively. Otherwise,
reference to the project output makes no sense for me.
But there's always debug version. What am I doing wrong?
--
Best regards, Dennis.
|