[pgsqlclient-checkins] pgsqlclient PGSqlClient_Mono.build.win32,1.1.1.1,1.2
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2003-07-19 10:13:18
|
Update of /cvsroot/pgsqlclient/pgsqlclient In directory sc8-pr-cvs1:/tmp/cvs-serv30364 Modified Files: PGSqlClient_Mono.build.win32 Log Message: Prepare for Alpha 1 release. Index: PGSqlClient_Mono.build.win32 =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient/PGSqlClient_Mono.build.win32,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** PGSqlClient_Mono.build.win32 12 Jul 2003 08:11:20 -0000 1.1.1.1 --- PGSqlClient_Mono.build.win32 19 Jul 2003 10:13:15 -0000 1.2 *************** *** 5,11 **** --- 5,13 ---- <property name="project.FormalName" value="PostgreSql.Data.PGSqlClient" /> <property name="project.version" value="1.0" /> + <!-- Build properties --> <property name="build.debug" value="true" /> <property name="build.define" value="_DEBUG" /> + <!-- Paths properties --> <property name="base.dir" value="." /> *************** *** 14,21 **** --- 16,25 ---- <property name="resources.dir" value="${src.dir}\Resources" /> <property name="csunit.dir" value="C:\Archivos de programa\csunit.org\csUnit 1.8.8" /> + <!-- Target for clean destination directory --> <target name="clean" description="cleans build directory"> <delete dir="${build.dir}" failonerror="false" verbose="true" /> </target> + <!-- Target for build in DEBUG mode --> <target name="debug" depends="clean"> *************** *** 23,26 **** --- 27,31 ---- <call target="build-all" /> </target> + <!-- Target for build in RELEASE mode --> <target name="release" depends="clean"> *************** *** 29,32 **** --- 34,38 ---- <call target="build-all" /> </target> + <!-- Target for check build configuration --> <target name="build-all"> *************** *** 36,42 **** </if> </target> <!-- Taget for build PGSqlClient .NET Data Provider Assembly --> <target name="build-pgsqlclient"> ! <mkdir dir="${build.dir}" /> <!-- compile PostgreSql.Data.PGSqlClient --> <csc output="${build.dir}\${project.FormalName}.dll" target="library" debug="${build.debug}" define="${build.define}"> --- 42,50 ---- </if> </target> + <!-- Taget for build PGSqlClient .NET Data Provider Assembly --> <target name="build-pgsqlclient"> ! <mkdir dir="${build.dir}" failonerror="false" /> ! <!-- compile PostgreSql.Data.PGSqlClient --> <csc output="${build.dir}\${project.FormalName}.dll" target="library" debug="${build.debug}" define="${build.define}"> *************** *** 55,58 **** --- 63,67 ---- </csc> </target> + <!-- Target for build csUnit Tests --> <target name="build-csnit-tests"> |