[Mono-bugs] [Bug 439947] New: Broken Nant on recent Mono revisions.

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Wed Oct 29 13:46:56 EDT 2008


https://bugzilla.novell.com/show_bug.cgi?id=439947


           Summary: Broken Nant on recent Mono revisions.
           Product: Mono: Class Libraries
           Version: SVN
          Platform: x86
        OS/Version: Linux
            Status: NEW
          Severity: Major
          Priority: P5 - None
         Component: System
        AssignedTo: mono-bugs at lists.ximian.com
        ReportedBy: cedricv at neonux.com
         QAContact: mono-bugs at lists.ximian.com
          Found By: ---


Nant does not build files in subdirectories with the commonly used '**'
wildcard anymore.

This nant buildfile :

<project name="foo" default="build">
      <target name="build">
            <csc output="foo.exe" target="exe">
               <sources basedir="Foo">
                   <include name="**/*.cs" />
               </sources>
           </csc>
    </target>
</project>

With a directory layout like this :

Foo/
  Foo.cs
  Bar/
    Bar.cs

Will compile just Foo.cs instead of the whole project.



A bisection shows that the bug was introduced by the RegEx changes in r117047.
Nant hence most probably using regexes for this wildcard feature.


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


More information about the mono-bugs mailing list