Title: RE: [NAnt-users] NAnt & Infragistics
I placed the infragistics dll's in the basedir like you suggested. But, it still does not work.


From: Gert Driesen [mailto:[EMAIL PROTECTED]
Sent: Fri 4/28/2006 1:59 PM
To: Ahmed, Shabana; nant-users@lists.sourceforge.net
Subject: RE: [NAnt-users] NAnt & Infragistics



> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]] On Behalf Of
> Ahmed, Shabana
> Sent: vrijdag 28 april 2006 18:55
> To: Gert Driesen; nant-users@lists.sourceforge.net
> Subject: RE: [NAnt-users] NAnt & Infragistics
>
> The build file is attached please take a look when you get a chance.

You should set the Infragistics directory using the basedir attribute on the
<references> element:

        <references basedir="c:/whatever/">
                <include name="System.Runtime.InteropServices" />
            <include name="System.Web" />
            <include name="System.Web.SessionState" />-->
            <include name="Infragistics.WebUI.Shared.v6.1.dll" />
        </references>

or specify it on the include:

        <references basedir=".....">
                <include name="System.Runtime.InteropServices" />
            <include name="System.Web" />
            <include name="System.Web.SessionState" />-->
            <include name="c:/whatever/Infragistics.WebUI.Shared.v6.1.dll"
/>
        </references>

Gert


Reply via email to