Update of /cvsroot/pgsqlclient/pgsqlclient
In directory sc8-pr-cvs1:/tmp/cvs-serv1576
Modified Files:
changelog.txt PGSqlClient.build
Log Message:
Updated CHANGELOG.TXT
Updated NAnt build file
Index: changelog.txt
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient/changelog.txt,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -d -r1.38 -r1.39
*** changelog.txt 1 Aug 2003 17:52:37 -0000 1.38
--- changelog.txt 2 Aug 2003 19:15:33 -0000 1.39
***************
*** 3,6 ****
--- 3,12 ----
+ 2003-07-02 Carlos Guzmán Álvarez <car...@te...>
+
+ * Changed casing of all clasess from PGXXX to PgXXX to
+ follow MS' guidelines.
+
+
2003-07-01 Carlos Guzmán Álvarez <car...@te...>
Index: PGSqlClient.build
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient/PGSqlClient.build,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** PGSqlClient.build 31 Jul 2003 10:54:13 -0000 1.6
--- PGSqlClient.build 2 Aug 2003 19:15:33 -0000 1.7
***************
*** 1,7 ****
<?xml version="1.0" ?>
! <project name="PGSqlClient" default="build-all" basedir="." xmlnds="http://tempuri.org/nant-vs.xsd">
<!-- Project properties -->
! <property name="project.name" value="PGSqlClient" />
! <property name="project.FormalName" value="PostgreSql.Data.PGSqlClient" />
<property name="project.version" value="1.0" />
--- 1,7 ----
<?xml version="1.0" ?>
! <project name="PgSqlClient" default="build-all" basedir="." xmlnds="http://tempuri.org/nant-vs.xsd">
<!-- Project properties -->
! <property name="project.name" value="PgSqlClient" />
! <property name="project.FormalName" value="PostgreSql.Data.PgSqlClient" />
<property name="project.version" value="1.0" />
***************
*** 14,18 ****
<property name="build.dir" value="build" />
<property name="src.dir" value="${project.FormalName}\source" />
! <property name="nunit.test.dir" value="PostgreSql.Data.PGSqlClient.UnitTests"/>
<property name="resources.dir" value="${src.dir}\Resources" />
<property name="distribution.dir" value="${build.dir}\distribution" />
--- 14,18 ----
<property name="build.dir" value="build" />
<property name="src.dir" value="${project.FormalName}\source" />
! <property name="nunit.test.dir" value="PostgreSql.Data.PgSqlClient.UnitTests"/>
<property name="resources.dir" value="${src.dir}\Resources" />
<property name="distribution.dir" value="${build.dir}\distribution" />
***************
*** 41,45 ****
</target>
! <!-- Displays configuration info, usefull for working out why PGSqlClient doesn't build -->
<target name="display-setup" depends="check-nunit-framework">
<!-- .NET Framework 1.0 -->
--- 41,45 ----
</target>
! <!-- Displays configuration info, usefull for working out why PgSqlClient doesn't build -->
<target name="display-setup" depends="check-nunit-framework">
<!-- .NET Framework 1.0 -->
***************
*** 130,138 ****
</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" define="${build.define}">
<sources>
--- 130,138 ----
</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" define="${build.define}">
<sources>
***************
*** 145,151 ****
<absolute file="System.XML.dll" />
</references>
! <arg value="/resource:${resources.dir}\Toolbox\PGConnection.bmp,PostgreSql.Data.PGSqlClient.Resources.ToolBox.PGConnection.bmp" />
! <arg value="/resource:${resources.dir}\Toolbox\PGCommand.bmp,PostgreSql.Data.PGSqlClient.Resources.ToolBox.PGCommand.bmp" />
! <arg value="/resource:${resources.dir}\Toolbox\PGDataAdapter.bmp,PostgreSql.Data.PGSqlClient.Resources.ToolBox.PGDataAdapter.bmp" />
<arg value="/optimize+" />
</csc>
--- 145,151 ----
<absolute file="System.XML.dll" />
</references>
! <arg value="/resource:${resources.dir}\Toolbox\PgConnection.bmp,PostgreSql.Data.PgSqlClient.Resources.ToolBox.PgConnection.bmp" />
! <arg value="/resource:${resources.dir}\Toolbox\PgCommand.bmp,PostgreSql.Data.PgSqlClient.Resources.ToolBox.PgCommand.bmp" />
! <arg value="/resource:${resources.dir}\Toolbox\PgDataAdapter.bmp,PostgreSql.Data.PgSqlClient.Resources.ToolBox.PgDataAdapter.bmp" />
<arg value="/optimize+" />
</csc>
***************
*** 159,163 ****
</fileset>
</copy>
! <!-- compile PostgreSql.Data.PGSqlClient.Tests -->
<csc output="${build.dir}\${project.FormalName}.UnitTests.dll" target="library">
<sources>
--- 159,163 ----
</fileset>
</copy>
! <!-- compile PostgreSql.Data.PgSqlClient.Tests -->
<csc output="${build.dir}\${project.FormalName}.UnitTests.dll" target="library">
<sources>
|