Can you send the detailed build log? Use -verbose flag on NAnt.

Jarek

----- Original Message ----- 
From: "Phalgun S Erra" <[EMAIL PROTECTED]>
To: "Jaroslaw Kowalski" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Wednesday, January 07, 2004 9:59 AM
Subject: Re: [Nant-users] Problem accessing static members of class


> Yes I did. Here is my code:
>
> <?xml version="1.0"?>
> <!--
>     This build file is intended for Smart Skin Creator
> -->
> <project name="SmartSkinCreator" default="build">
>     <property name="basename" value="SmartSkin" />
>     <property name="debug" value="true" />
>     <property name="build.dir" value="build" />
>     <property name="source.dir" value="source" />
>     <property name="build.tempdir" value="Temp" />
>     <property name="build.success" value="false" />
>     <target name="clean" description="cleans build directory">
>         <if propertytrue="build.success">
>             <delete dir="${build.dir}" verbose="true" failonerror="false"
/>
>         </if>
>     </target>
>     <target name="rename.script">
>         <script language="C#">
>             <code><![CDATA[
> public static void ScriptMain(Project project) {
> Directory.Move( project.Properties[ "build.tempdir" ],
> project.Properties[ "build.dir" ] );
>             }
> ]]></code>
>         </script>
>     </target>
>     <target name="debug">
>         <property name="debug" value="true" />
>     </target>
>     <target name="release">
>         <property name="debug" value="false" />
>     </target>
>     <target name="build">
>         <delete dir="${build.tempdir}" failonerror="false" />
>         <mkdir dir="${build.tempdir}" />
>         <csc output="${build.tempdir}/Utilities.dll" target="library"
debug="${debug}">
>             <sources>
>                 <includes
name="${source.dir}/Smart-Skin-Creator-Tool/Common/Utilities/**/*.cs" />
>                 <excludes
name="${source.dir}/Smart-Skin-Creator-Tool/Common/Utilities/**/_*.cs" />
>             </sources>
>             <references>
>                 <includes
name="${source.dir}/Smart-Skin-Creator-Tool/Common/Utilities/Obj/Interop.She
ll32.dll" />
>                 <includes asis="true" name="System.Dll" />
>                 <includes asis="true" name="System.Data.Dll" />
>                 <includes asis="true" name="System.Drawing.Dll" />
>                 <includes asis="true" name="System.Management.Dll" />
>                 <includes asis="true" name="System.Windows.Forms.Dll" />
>                 <includes asis="true" name="System.XML.Dll" />
>             </references>
>         </csc>
>         <copy
file="${source.dir}/Smart-Skin-Creator-Tool/Common/Utilities/Obj/Interop.She
ll32.dll" todir="${build.tempdir}" />
>         <csc output="${build.tempdir}/${basename}.exe" target="winexe"
debug="${debug}" win32icon="${source.dir}/Smart-Skin-Creator-Tool/Smart Skin
Creator/App.Ico" main="Wildseed.Tools.SmartSkin.Creator.SmartSkinCreator"
verbose="false">
>             <sources>
>                 <includes
name="${source.dir}/Smart-Skin-Creator-Tool/Smart Skin Creator/**/*.cs" />
>                 <excludes
name="${source.dir}/Smart-Skin-Creator-Tool/Smart Skin
Creator/**/SmartSkin.cs" />
>                 <excludes
name="${source.dir}/Smart-Skin-Creator-Tool/Smart Skin Creator/**/Images.cs"
/>
>                 <excludes
name="${source.dir}/Smart-Skin-Creator-Tool/Smart Skin Creator/**/Videos.cs"
/>
>                 <excludes
name="${source.dir}/Smart-Skin-Creator-Tool/Smart Skin
Creator/**/CompileSkin.cs" />
>                 <excludes
name="${source.dir}/Smart-Skin-Creator-Tool/Smart Skin
Creator/**/NewSkin.cs" />
>             </sources>
>             <references>
>                 <includes name="${build.tempdir}/Utilities.dll" />
>                 <includes
name="${source.dir}/Smart-Skin-Creator-Tool/SharpZipLib/src/ICSharpCode.Shar
pZipLib/ICSharpCode.SharpZipLib.dll" />
>                 <includes
name="${source.dir}/Smart-Skin-Creator-Tool/MagicLibrary/MagicLibrary.dll"
/>
>                 <includes asis="true" name="System.Dll" />
>                 <includes asis="true" name="System.Data.Dll" />
>                 <includes asis="true" name="System.Drawing.Dll" />
>                 <includes asis="true" name="System.Windows.Forms.Dll" />
>                 <includes asis="true" name="System.XML.Dll" />
>             </references>
>         </csc>
>         <delete dir="${build.dir}" failonerror="false" />
>         <call target="rename.script" />
>     </target>
> </project>
>
>
>
>
> ____________________________________________________________
> Get advanced SPAM filtering on Webmail or POP Mail ... Get Lycos Mail!
> http://login.mail.lycos.com/r/referral?aid=27005
>



-------------------------------------------------------
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to