Re: [WiX-users] WixMbaPrereqPackageId variable not visible from Fragment element

2012-12-23 Thread Bob Arnson
On 18-Dec-12 03:40, Mihajlo Cvetanović wrote:
 I had those two lines already, but like I said they were in Fragment element
 instead of in Bundle element. When I moved them to Bundle element the
 problem was gone. My question is if this is requirement or a bug? Do
 WixVariable elements must reside in Bundle element?
You need to reference something in the Fragment for it to be pulled into 
the Bundle.

-- 
sig://boB
http://joyofsetup.com/


--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WixMbaPrereqPackageId variable not visible from Fragment element

2012-12-18 Thread Mihajlo Cvetanović
I had those two lines already, but like I said they were in Fragment element
instead of in Bundle element. When I moved them to Bundle element the
problem was gone. My question is if this is requirement or a bug? Do
WixVariable elements must reside in Bundle element?



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WixMbaPrereqPackageId-variable-not-visible-from-Fragment-element-tp7582403p7582435.html
Sent from the wix-users mailing list archive at Nabble.com.

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] WixMbaPrereqPackageId variable not visible from Fragment element

2012-12-17 Thread Mihajlo Cvetanović
I'm new to Burn, and was trying my first test dummy setup with GUI
that I found here:
http://bryanpjohnston.com/2012/09/28/custom-wix-managed-bootstrapper-application/

Solution contains three projects: TestBA.csproj,
DummyInstaller.wixproj, and BootstrapperSetup.wixproj. I removed all
the MVVM stuff from TestBA project and left there only one MessageBox.
TestBA and DummyInstaller projects build just fine, but
BootstrapperSetup project could not build giving me this:

-- Build started: Project: BootstrapperSetup, Configuration: Debug
x86 --
...
E:\delivery\Dev\wix36_public\src\ext\BalExtension\wixlib\Mba.wxs(62,0):
error LGHT0197: The Windows Installer XML variable
!(wix.WixMbaPrereqPackageId) is unknown.  Please ensure the variable
is declared on the command line for light.exe, via a WixVariable
element, or inline using the syntax !(wix.WixMbaPrereqPackageId=some
value which doesn't contain parenthesis).
E:\delivery\Dev\wix36_public\src\ext\BalExtension\wixlib\Mba.wxs(62,0):
error LGHT0197: The Windows Installer XML variable
!(wix.WixMbaPrereqLicenseUrl) is unknown.  Please ensure the variable
is declared on the command line for light.exe, via a WixVariable
element, or inline using the syntax !(wix.WixMbaPrereqLicenseUrl=some
value which doesn't contain parenthesis).
Done building project BootstrapperSetup.wixproj -- FAILED.

BUT, when I move two WixVariable elements from Fragment to Bundle
element just above it in Bundle.wxs file then everything builds just
fine. What is going on here?

WiX version given in Visual Studio about box is Windows Installer XML
Toolset 3.6.3303.0.

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WixMbaPrereqPackageId variable not visible from Fragment element

2012-12-17 Thread Nick Ramirez
In your Bundle.wxs, if you have:

 BootstrapperApplicationRef Id=ManagedBootstrapperApplicationHost
 ...
  /BootstrapperApplicationRef

then you also need, after the BootstrapperApplicationRef:

WixVariable Id=WixMbaPrereqLicenseUrl Value=... /
WixVariable Id=WixMbaPrereqPackageId Value=... /





--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WixMbaPrereqPackageId-variable-not-visible-from-Fragment-element-tp7582403p7582421.html
Sent from the wix-users mailing list archive at Nabble.com.

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users