All,

I have a slingshot generated build file that works using 0.84.1455.0.
I installed the latest nightly build - 0.85.1538.0  (20040318)

Using 0.85.1538.0, I get the following error:

        An empty string is not a valid value for attribute 'Doc'  of  <csc ... />


  <target name="Utility.Debug">
    <property name="project.name" value="Utility" />
    <property name="build.dir" value="${build.basedir}\Debug" />
    <property name="slingshot.config" value="Debug" />
    <property name="output" value="${build.dir}\Utility.dll" />
    <property name="debug" value="true" />
    <property name="unsafe" value="/unsafe-" />
    <property name="checked" value="/checked-" />
    <property name="define" value="DEBUG;TRACE" />
    <property name="doc" value="" />
    <property name="warninglevel" value="4" />
    <call target="Utility" />
  </target>

  <target name="Utility" depends="setup">
    <csc target="library" output="${output}" debug="${debug}"
define="${define}" doc="${doc}" warninglevel="${warninglevel}">
      <arg value="${unsafe}" />
      <arg value="${checked}" />
      <sources>
        <includes name="AssemblyInfo.cs" />
        <includes name="BindControls.cs" />
        <includes name="SQLUtility.cs" />
      </sources>
      <references>
        <includes
name="C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.dll" />
        <includes
name="C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.Data.dll" />
        <includes
name="C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.XML.dll" />
        <includes
name="C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.Web.dll" />
        <includes name="C:\Program Files\Intel\CryptoNET\CryptoNETLib.dll"
/>
      </references>
    </csc>
  </target>

Thanks,
Noel




-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to