Update of /cvsroot/sharpcvslib/sharpcvslib/build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30314/build
Modified Files:
SharpCvsLib.build Tests.build.xml
Log Message:
Fixed bug in Manager.UpdateCvsPassfile method, was using the CVS_PASSFILE location instead of the file name passed in. Also reformatted the response message output in -verbose mode.
Index: SharpCvsLib.build
===================================================================
RCS file: /cvsroot/sharpcvslib/sharpcvslib/build/SharpCvsLib.build,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** SharpCvsLib.build 31 Oct 2004 18:25:15 -0000 1.33
--- SharpCvsLib.build 21 Nov 2004 22:41:12 -0000 1.34
***************
*** 134,138 ****
</target>
! <target name="build.test" depends="setup, build.lib, build.console">
<nant buildfile="${dir.build}/${name.tests}.build.xml" target="build"/>
</target>
--- 134,138 ----
</target>
! <target name="build.test" depends="setup">
<nant buildfile="${dir.build}/${name.tests}.build.xml" target="build"/>
</target>
Index: Tests.build.xml
===================================================================
RCS file: /cvsroot/sharpcvslib/sharpcvslib/build/Tests.build.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Tests.build.xml 9 Sep 2004 07:04:56 -0000 1.4
--- Tests.build.xml 21 Nov 2004 22:41:13 -0000 1.5
***************
*** 11,20 ****
<arg value="${compile.unsafe}" />
<arg value="${compile.checked}" />
! <sources basedir="${dir.src}/${name.top-level}.${name.tests}/${name.project}">
<include name="**/*.cs" />
! <include name="../../${name.top-level}/${name.project}/**.cs" />
! <include name="../../${name.top-level}.${name.console}/${name.project}/**.cs" />
! <exclude name="../../${name.top-level}/${name.project}/AssemblyInfo.cs" />
! <exclude name="../../${name.top-level}.${name.console}/${name.project}/AssemblyInfo.cs" />
</sources>
--- 11,17 ----
<arg value="${compile.unsafe}" />
<arg value="${compile.checked}" />
! <sources basedir="${dir.src}">
<include name="**/*.cs" />
! <exclude name="**/*AssemblyInfo.cs"/>
</sources>
|