I am trying to build a project on Windows using nant 0.82 and Mono 0.24.
I have modified the .config file to point to c:\mono-0.24 but I still get a file not found exception as soon as building starts.
The project could not be simpler. Here is the target snippet:
<target name="nondebug" description="Builds the nondebug version"> <mcs target="library" output="ByteFX.Data.MySqlclientTests.dll" debug="false"> <sources> <includes name="commandtests.cs"/> <includes name="connectiontests.cs"/> <includes name="stresstests.cs"/> <includes name="parametertests.cs"/> <includes name="dataadaptertests.cs"/> <includes name="datareadertests.cs"/> </sources> </mcs> </target>
Any ideas on what may be wrong here?
Thanks Reggie |
- RE: [Nant-users] mono 0.24 failure Reggie Burnett
- RE: [Nant-users] mono 0.24 failure Anthony LoveFrancisco