[Ccnetcontrib-developer] ccnetcontrib ccnetcontrib.build,1.1,1.2
Brought to you by:
exortech,
mikeroberts
From: Mike R. <mik...@us...> - 2005-01-06 04:44:22
|
Update of /cvsroot/ccnetcontrib/ccnetcontrib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32474 Modified Files: ccnetcontrib.build Log Message: Moving VSSPlugin into common src tree, and adding vssplugin specific targets to build script. Index: ccnetcontrib.build =================================================================== RCS file: /cvsroot/ccnetcontrib/ccnetcontrib/ccnetcontrib.build,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ccnetcontrib.build 6 Jan 2005 04:02:43 -0000 1.1 --- ccnetcontrib.build 6 Jan 2005 04:44:13 -0000 1.2 *************** *** 1,5 **** <?xml version="1.0"?> ! <project name="ccnet" default="test"> <!-- PROPERTIES --> --- 1,5 ---- <?xml version="1.0"?> ! <project name="ccnetcontrib" default="test"> <!-- PROPERTIES --> *************** *** 21,35 **** </target> ! <target name="compile" description="compiles everything to be released"> <mkdir dir="build" verbose="${verbosity}"/> <solution configuration="build" solutionfile="src\CCNetContribNoEnvironmentDependencies.sln" /> </target> ! <target name="test" depends="compile, test.unit" /> ! <target name="test.unit" description="runs unit tests"> <exec program="${nunit-console.exe}" workingdir="build\X10Publisher.Tests" commandline="ThoughtWorks.CruiseControl.Contrib.X10Publisher.Tests.dll /xml:../ThoughtWorks.CruiseControl.Contrib.X10Publisher.Tests.dll-results.xml /nologo"/> </target> <target name="dist"> <!-- --- 21,53 ---- </target> ! <target name="compile" depends="compile.noenvironmentdependendencies" description="Default Compile target" /> ! ! <target name="compile.noenvironmentdependendencies"> <mkdir dir="build" verbose="${verbosity}"/> <solution configuration="build" solutionfile="src\CCNetContribNoEnvironmentDependencies.sln" /> </target> ! <target name="compile.vssplugin"> ! <mkdir dir="build" verbose="${verbosity}"/> ! <solution configuration="build" solutionfile="src\VSSPlugin.sln" /> ! </target> ! <target name="compile.all"> ! <mkdir dir="build" verbose="${verbosity}"/> ! <solution configuration="build" solutionfile="src\AllCCNetContrib.sln" /> ! </target> ! ! <target name="test" depends="compile, test.unit.noenvironmentdependendencies" description="Default Test target" /> ! ! <target name="test.unit.noenvironmentdependendencies"> <exec program="${nunit-console.exe}" workingdir="build\X10Publisher.Tests" commandline="ThoughtWorks.CruiseControl.Contrib.X10Publisher.Tests.dll /xml:../ThoughtWorks.CruiseControl.Contrib.X10Publisher.Tests.dll-results.xml /nologo"/> </target> + <target name="test.unit.vssplugin"> + <exec program="${nunit-console.exe}" workingdir="build\VSSPlugin.Tests" commandline="ThoughtWorks.CruiseControl.Contrib.VSSPlugin.Tests.dll /xml:../ThoughtWorks.CruiseControl.Contrib.X10Publisher.Tests.dll-results.xml /nologo"/> + </target> + + <target name="test.all" depends="test.unit.noenvironmentdependendencies, test.unit.vssplugin" /> + <target name="dist"> <!-- |