Re: [WiX-users] .NET 4 pre-req in WixNetFxExtension

2012-07-10 Thread Nick Ramirez
I see. What would Result.Ok do then in this situation? Is there a place that lists what the different result codes do, out of curiosity? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/NET-4-pre-req-in-WixNetFxExtension-tp7579058p7579374.html Sent

Re: [WiX-users] .NET 4 pre-req in WixNetFxExtension

2012-07-09 Thread Rob Mensching
Result.NoAction is like saying Nothing to do here. smile/ On Mon, Jul 9, 2012 at 9:52 AM, Nick Ramirez nickra...@hotmail.com wrote: Thanks, I've added an event handler for the ResolveSource event and that gets me past this issue. My bundle installs! I am following the WiX setup example by

Re: [WiX-users] .NET 4 pre-req in WixNetFxExtension

2012-07-07 Thread Milan Kaše
Do you handle the OnResolveSource event in your BA? You should return IDDOWNLOAD there. 2012/7/7 Nick Ramirez nickra...@hotmail.com *I'm reference this in the Chain element:* PackageGroupRef Id=NetFx40Redist/ *But I get an error using my custom bootstrapper application:* Plan complete,

Re: [WiX-users] .NET 4 pre-req in WixNetFxExtension

2012-07-06 Thread Nick Ramirez
*I'm reference this in the Chain element:* PackageGroupRef Id=NetFx40Redist/ *But I get an error using my custom bootstrapper application:* Plan complete, result: 0x0 [0A00:07D8][2012-07-06T23:48:46]: Apply begin [0BD4:07B8][2012-07-06T23:48:50]: Creating a system restore point.

Re: [WiX-users] .NET 4 pre-req in WixNetFxExtension

2012-06-24 Thread Bob Arnson
On 23-Jun-12 20:28, Nick Ramirez wrote: Looking at the source code for the extension, that package has the DownloadUrl attribute but not the SourceFile attribute, so would that mean the user needs to have an internet connection? Yes. Am I right in thinking that having a SourceFile attribute

Re: [WiX-users] .NET 4 pre-req in WixNetFxExtension

2012-06-24 Thread Nick Ramirez
Thanks, Bob! -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/NET-4-pre-req-in-WixNetFxExtension-tp7579058p7579070.html Sent from the wix-users mailing list archive at Nabble.com.

[WiX-users] .NET 4 pre-req in WixNetFxExtension

2012-06-23 Thread Nick Ramirez
It's fantastic that with the later builds of version 3.6, we can reference the WixNetFxExtension and then put PackageGroupRef Id=NetFx40Web/ in to make .NET 4 a prereq. Chain PackageGroupRef Id=NetFx40Web/ MsiPackage SourceFile=MyInstaller.msi / /Chain Looking at the source code for