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 setting the event argument's Result to "Download" when DownloadSource is not null, and to "Ok" otherwise. I am assuming that using "Ok" for a package that doesn't need to be downloaded is like saying, "Nothing to do here".
this.Bootstrapper.ResolveSource += (o, args) => { if (!string.IsNullOrEmpty(args.DownloadSource)){ // Downloadable package found args.Result = Result.Download; } else { // Not downloadable args.Result = Result.Ok; } } -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/NET-4-pre-req-in-WixNetFxExtension-tp7579058p7579356.html Sent from the wix-users mailing list archive at Nabble.com. ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users