Re: [NAnt-users] msi custom actions

2008-10-07 Thread Fabricio.Santana
Thanks for your reply. I am not sure if I can implement your suggestion but as a workaround I created a console application that the EntryPoint in the Main method as a wrapper to my custom action. So, my custom action changed for something like

Re: [NAnt-users] msi custom actions

2008-10-07 Thread Bob Archer
According to MS the target for custom action type 1 is as follows: Target The DLL is called through the entry point named in the Target field of the CustomAction table, passing a single argument that is the handle to the current install session. The entry point name specified in the table m

[NAnt-users] msi custom actions

2008-10-07 Thread Fabricio.Santana
Hey all, I have a .net class library that I am trying to configure as a custom action in my build script. The classlibrary contains one InstallerClass that is declared like: Imports System.ComponentModel Imports System.Configuration.Install Public Class Installer1 Inherits Syste

Re: [NAnt-users] NAnt sql task fails, but code works in SQL Query Analyzer

2008-10-07 Thread Artie Leech
Bob, You're right! In the sql task, changing from delimstyle="Normal" to delimstyle="Line" sorted my problem. As you said, I just need to ensure all my 'GO's are on their own line now. Thanks very much indeed for you help. Artie Bob Archer wrote: > > It's because [I think] you are usi