Hello, I still have the problem with 'lighting' my wix-sql-example (see below). Maybe you have any ideas? I get following error:
light WixMondoSample.wixobj -ext WixSqlExtension.dll -ext WixUIExtension Microsoft (R) Windows Installer Xml Linker version 3.0.2925.0 Copyright (C) Microsoft Corporation 2003. All rights reserved. C:\delivery\Dev\wix\src\ext\sqlextension\wixlib\SqlExtension.wxs(27) : error LGHT0094 : Unresolved reference to symbol 'Binary:ScaSchedule' in section 'Fragment:'. C:\delivery\Dev\wix\src\ext\sqlextension\wixlib\SqlExtension.wxs(28) : error LGHT0094 : Unresolved reference to symbol 'Binary:ScaSchedule' in section 'Fragment:'. ----------------------------------------------- WXS: <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:Sql="http://schemas.microsoft.com/wix/SqlExtension" > <Product Id="34d0f6de-2dff-4321-8e0b-926a86e98678" UpgradeCode="9c8fcd7b-4632-4872-99ad-18394618cc89" Name="Acme Sample Application" Language="1033" Version="1.0.0.0" Manufacturer="Acme Software Ltd." > <Package InstallerVersion="200" Compressed="yes" /> <Media Id="1" Cabinet="WixMondoSample.cab" EmbedCab="yes" /> <WixVariable Id="WixUILicenseRtf" Value="license.rtf" /> <WixVariable Id="WixUIDialogBmp" Value="test.bmp" /> <Binary Id="testsql" SourceFile=".\testsql.sql" /> <Sql:SqlDatabase Id="db1" Server="." Database="TestWixDB" /> <Directory Id="TARGETDIR" Name="SourceDir" FileSource=".\"> <Component Id="DatabaseUpdate" Guid="6f051579-2950-42e3-9381-2f538ae1de08"> <Sql:SqlScript Id="SqlScript1" SqlDb="db1" ContinueOnError="no" ExecuteOnInstall="yes" ExecuteOnReinstall="yes" Sequence="001" BinaryKey="testsql" /> <Sql:SqlString Id="SqlScript1" SqlDb="db1" ContinueOnError="yes" ExecuteOnUninstall="yes" Sequence="002" SQL="update customer set surname = 'Clinton' where Vorname= 'Bill'" /> </Component> <Component Id="ProductComponent" Guid="13b4d0a3-2d1d-4f2d-8765-bd8043aee206"> <File Id="f1" Name="SampleFile.txt" /> </Component> </Directory> <Feature Id="ProductFeature" Title="Main Feature" Level="1"> <ComponentRef Id="DatabaseUpdate" /> <ComponentRef Id="ProductComponent" /> </Feature> <UIRef Id="WixUI_Mondo" /> </Product> </Wix> ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users