Re: [WiX-users] xsd and wix

2009-03-11 Thread Bob Arnson
Lough, Norman wrote: > Has anyone else ran xsd on wix.xsd to create a cs file? I'm trying to > automate the creation of my wix files but now need to add support for > iis. WiX already supports that; see the Microsoft.Tools.WindowsInstallerXml.Serialize namespace. -- sig://boB http://joyofsetup

[WiX-users] xsd and wix

2009-03-11 Thread Lough, Norman
Problem sorted. If anyone else is doing this sort of thing: XmlSerializer writer = new XmlSerializer(typeof(Wix)); XmlSerializerNamespaces ns = new XmlSerializerNamespaces(); ns.Add("iis", "http://schemas.microsoft.com/wix/IIsExtension";); writer.Serialize

[WiX-users] xsd and wix

2009-03-11 Thread Lough, Norman
Paragraph 2 should of course have referred to line 7. Apologies Norman Lough Developer Tel: +44 (0)191 213 DDI: +44 (0)191 2028360 Email: norman.lo...@imass.co.uk Imass Ltd, Northumbria House, Regent Centre, Gosforth, Newcastle upon Tyne, NE3 3PX. http://www.imass.co.uk

[WiX-users] xsd and wix

2009-03-11 Thread Lough, Norman
Has anyone else ran xsd on wix.xsd to create a cs file? I'm trying to automate the creation of my wix files but now need to add support for iis. In a manually created file I included: Xmlns:iis = "http://schemas.microsoft.com/wix/IIsExtension"; - to try and replicate this I attempted to use lin