From: <exo...@us...> - 2006-05-29 05:55:44
|
Revision: 2409 Author: exortech Date: 2006-05-28 22:55:41 -0700 (Sun, 28 May 2006) ViewCVS: http://svn.sourceforge.net/ccnet/?rev=2409&view=rev Log Message: ----------- updating copyright year Modified Paths: -------------- trunk/ccnet.build Modified: trunk/ccnet.build =================================================================== --- trunk/ccnet.build 2006-05-29 05:52:27 UTC (rev 2408) +++ trunk/ccnet.build 2006-05-29 05:55:41 UTC (rev 2409) @@ -234,7 +234,7 @@ </imports> <attributes> <attribute type="AssemblyVersionAttribute" value="${CCNetLabel}" /> - <attribute type="AssemblyCopyrightAttribute" value="Copyright © 2005 ThoughtWorks Inc." /> + <attribute type="AssemblyCopyrightAttribute" value="Copyright \xA9 2006 ThoughtWorks Inc." /> <attribute type="AssemblyCompanyAttribute" value="ThoughtWorks" /> <attribute type="AssemblyProductAttribute" value="CruiseControl.NET" /> </attributes> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <exo...@us...> - 2006-05-29 06:09:10
|
Revision: 2412 Author: exortech Date: 2006-05-28 23:09:05 -0700 (Sun, 28 May 2006) ViewCVS: http://svn.sourceforge.net/ccnet/?rev=2412&view=rev Log Message: ----------- restoring escape character before copyright symbol Modified Paths: -------------- trunk/ccnet.build Modified: trunk/ccnet.build =================================================================== --- trunk/ccnet.build 2006-05-29 05:59:00 UTC (rev 2411) +++ trunk/ccnet.build 2006-05-29 06:09:05 UTC (rev 2412) @@ -234,7 +234,7 @@ </imports> <attributes> <attribute type="AssemblyVersionAttribute" value="${CCNetLabel}" /> - <attribute type="AssemblyCopyrightAttribute" value="Copyright \xA9 2006 ThoughtWorks Inc." /> + <attribute type="AssemblyCopyrightAttribute" value="Copyright © 2006 ThoughtWorks Inc." /> <attribute type="AssemblyCompanyAttribute" value="ThoughtWorks" /> <attribute type="AssemblyProductAttribute" value="CruiseControl.NET" /> </attributes> @@ -296,4 +296,4 @@ </delete> </target> -</project> \ No newline at end of file +</project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <exo...@us...> - 2006-10-04 00:48:14
|
Revision: 2578 http://svn.sourceforge.net/ccnet/?rev=2578&view=rev Author: exortech Date: 2006-10-03 08:57:44 -0700 (Tue, 03 Oct 2006) Log Message: ----------- including cctray installer in the cruisecontrol zip archive Modified Paths: -------------- trunk/ccnet.build Modified: trunk/ccnet.build =================================================================== --- trunk/ccnet.build 2006-10-03 06:23:15 UTC (rev 2577) +++ trunk/ccnet.build 2006-10-03 15:57:44 UTC (rev 2578) @@ -169,7 +169,7 @@ </target> <!-- CREATE DISTRIBUTABLES --> - <target name="dist" depends="deploy"> + <target name="dist" depends="deploy"> <copy todir="deployed" file="license.txt" /> <copy todir="deployed\doc"> <fileset basedir="doc"> @@ -183,6 +183,14 @@ </copy> <mkdir dir="dist"/> + + <exec program="tools\NSIS\makensis.exe" commandline="cctray.nsi" /> + <copy todir="${webdashboard.dir}\cctray"> + <fileset basedir="dist"> + <include name="*CCTray*.exe" /> + </fileset> + </copy> + <zip zipfile="dist\CruiseControl.NET-${CCNetLabel}.zip"> <fileset basedir="deployed"> <include name="**\*" /> @@ -203,13 +211,6 @@ <exclude name="**\_Resharper*\**" /> </fileset> </zip> - - <exec program="tools\NSIS\makensis.exe" commandline="cctray.nsi" /> - <copy todir="${webdashboard.dir}\cctray"> - <fileset basedir="dist"> - <include name="*CCTray*.exe" /> - </fileset> - </copy> <exec program="tools\NSIS\makensis.exe" commandline="ccnet.nsi" /> </target> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <exo...@us...> - 2006-10-04 01:43:04
|
Revision: 2572 http://svn.sourceforge.net/ccnet/?rev=2572&view=rev Author: exortech Date: 2006-10-02 08:39:10 -0700 (Mon, 02 Oct 2006) Log Message: ----------- including version number in zip packages -- simplifies deployment to sourceforge Modified Paths: -------------- trunk/ccnet.build Modified: trunk/ccnet.build =================================================================== --- trunk/ccnet.build 2006-10-02 06:36:35 UTC (rev 2571) +++ trunk/ccnet.build 2006-10-02 15:39:10 UTC (rev 2572) @@ -183,13 +183,13 @@ </copy> <mkdir dir="dist"/> - <zip zipfile="dist\CruiseControl.NET.zip"> + <zip zipfile="dist\CruiseControl.NET-${CCNetLabel}.zip"> <fileset basedir="deployed"> <include name="**\*" /> </fileset> </zip> - <zip zipfile="dist\CruiseControl.NET.source.zip"> + <zip zipfile="dist\CruiseControl.NET-${CCNetLabel}.source.zip"> <fileset> <include name="**\*" /> <exclude name="build.txt" /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |