From: Michael D. <mik...@us...> - 2004-12-08 15:22:14
|
Update of /cvsroot/nhibernate/nhibernate/src/Iesi.Collections In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8009/Iesi.Collections Modified Files: AssemblyInfo.cs Iesi.Collections-1.1.csproj Iesi.Collections.build Added Files: NamespaceSummary.xml Removed Files: NamespaceDoc.cs Log Message: Added test fixtures for Iesi.Collections --- NamespaceDoc.cs DELETED --- Index: Iesi.Collections-1.1.csproj =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/Iesi.Collections/Iesi.Collections-1.1.csproj,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Iesi.Collections-1.1.csproj 18 Nov 2004 02:40:45 -0000 1.1 --- Iesi.Collections-1.1.csproj 8 Dec 2004 15:21:59 -0000 1.2 *************** *** 124,130 **** /> <File ! RelPath = "NamespaceDoc.cs" ! SubType = "Code" ! BuildAction = "Compile" /> <File --- 124,129 ---- /> <File ! RelPath = "NamespaceSummary.xml" ! BuildAction = "Content" /> <File Index: Iesi.Collections.build =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/Iesi.Collections/Iesi.Collections.build,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Iesi.Collections.build 21 Nov 2004 22:53:09 -0000 1.2 --- Iesi.Collections.build 8 Dec 2004 15:21:59 -0000 1.3 *************** *** 17,25 **** --- 17,42 ---- * project.version.build - the build number * sign - (true|false)indicates if the Assembly should be signed. + * clover.enabled - (true|false) indicates if Clover.NET should handle the build + * clover.src - location of the clovered source to be stored at from the root of nhibernate + * clover.db - location of the coverage db from the root of nhibernate --> + <if propertytrue="clover.enabled"> + <loadtasks assembly="${clover.home}/CloverNAnt-0.84.dll" /> + </if> + <property name="keyFile" value="..\NHibernate.snk" /> <target name="build" description="Build Iesi.Collections"> + + <if propertytrue="clover.enabled"> + <clover-setup + initstring="..\..\${clover.db}" + builddir="..\..\${clover.src}\${nant.project.name}" + enabled="${clover.enabled}" + flushinterval="1000" + /> + </if> + <!-- ensure the AssemblyInfo is writable --> <attrib file="AssemblyInfo.cs" readonly="false" /> *************** *** 66,70 **** </csc> - </target> --- 83,86 ---- --- NEW FILE: NamespaceSummary.xml --- (This appears to be a binary file; contents omitted.) Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/Iesi.Collections/AssemblyInfo.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AssemblyInfo.cs 21 Nov 2004 22:53:09 -0000 1.2 --- AssemblyInfo.cs 8 Dec 2004 15:21:59 -0000 1.3 *************** *** 6,10 **** // <autogenerated> // This code was generated by a tool. ! // Runtime Version: 1.1.4322.573 // // Changes to this file may cause incorrect behavior and will be lost if --- 6,10 ---- // <autogenerated> // This code was generated by a tool. ! // Runtime Version: 1.1.4322.985 // // Changes to this file may cause incorrect behavior and will be lost if *************** *** 25,28 **** [assembly: AssemblyInformationalVersionAttribute("1.0")] [assembly: AssemblyFileVersionAttribute("1.0.0.1")] ! //[assembly: AssemblyKeyFileAttribute("..\\NHibernate.snk")] --- 25,28 ---- [assembly: AssemblyInformationalVersionAttribute("1.0")] [assembly: AssemblyFileVersionAttribute("1.0.0.1")] ! [assembly: AssemblyKeyFileAttribute("..\\NHibernate.snk")] |