Re: [WiX-users] Writing own Wix Extension

2010-04-29 Thread vunder
Thanks for answer. The problem was in type of xsd-resource, it was just included file. I changed type type "Embedded Resource" and schema loaded successfull! -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Writing-own-Wix-Extension-tp4968486p4980011

Re: [WiX-users] Writing own Wix Extension

2010-04-29 Thread Bob Arnson
On 4/29/2010 3:57 AM, vunder wrote: > this.schema = > LoadXmlSchemaHelper(Assembly.GetExecutingAssembly(), > "Microsoft.Tools.WindowsInstallerXml.Extensions.Xsd.InterBase.xsd"); > Check your extension assembly using ILDasm or Reflector to make sure the resource name is correct. -- sig://boB

Re: [WiX-users] Writing own Wix Extension

2010-04-29 Thread vunder
Could not understand, where error Xsd: http://www.w3.org/2001/XMLSchema"; xmlns:xse="http://schemas.microsoft.com/wix/2005/XmlSchemaExtension"; targetNamespace="http://schemas.www.stc-spb.ru/wix/InterBaseExtension"; > http://schemas.microsoft.com/wix/2006/wi"; />

Re: [WiX-users] Writing own Wix Extension

2010-04-28 Thread vunder
As I understand extension does not do anything (I mean actions during installation), it only add new tables in MSI-database or modify existing. Real actions providing by custom actions, executing as allways after "InstallFiles". Am I right? -- View this message in context: http://windows-install

Re: [WiX-users] Writing own Wix Extension

2010-04-27 Thread dB .
cow|Geneva|Seattle|New York -Original Message- From: vunder [mailto:vun...@bk.ru] Sent: Tuesday, April 27, 2010 9:14 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Writing own Wix Extension I could not find normal step-by-step help, how to write extension. I wrote a extension

[WiX-users] Writing own Wix Extension

2010-04-27 Thread vunder
I could not find normal step-by-step help, how to write extension. I wrote a extension class and compiler class, assembly is loading by candle.exe/light.exe (http://blogs.msdn.com/pmarcu/archive/2007/11/02/wix-writing-your-own-wix-extension-part-1.aspx) but what next? I want to write some Borland