[Monodevelop-patches-list] r1933 - in branches/MonoDevelop-plan-43: . lib
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Wed Aug 11 10:22:25 EDT 2004
Author: jzwart
Date: 2004-08-11 10:22:25 -0400 (Wed, 11 Aug 2004)
New Revision: 1933
Added:
branches/MonoDevelop-plan-43/lib/
branches/MonoDevelop-plan-43/lib/log4net.dll
Modified:
branches/MonoDevelop-plan-43/ChangeLog
branches/MonoDevelop-plan-43/default.build
Log:
2004-08-11 Jeroen Zwartepoorte <jeroen at xs4all.nl>
* lib/log4net.dll: include a compiled log4net assembly for ease of use.
* default.build: change init target slightly; copy log4net.dll to
lib.dir.
Modified: branches/MonoDevelop-plan-43/ChangeLog
===================================================================
--- branches/MonoDevelop-plan-43/ChangeLog 2004-08-11 14:06:40 UTC (rev 1932)
+++ branches/MonoDevelop-plan-43/ChangeLog 2004-08-11 14:22:25 UTC (rev 1933)
@@ -1,5 +1,11 @@
2004-08-11 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+ * lib/log4net.dll: include a compiled log4net assembly for ease of use.
+ * default.build: change init target slightly; copy log4net.dll to
+ lib.dir.
+
+2004-08-11 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+
Ditch the build dir from svn. Added the Gdl sources to the build.
2004-08-11 Jeroen Zwartepoorte <jeroen at xs4all.nl>
Modified: branches/MonoDevelop-plan-43/default.build
===================================================================
--- branches/MonoDevelop-plan-43/default.build 2004-08-11 14:06:40 UTC (rev 1932)
+++ branches/MonoDevelop-plan-43/default.build 2004-08-11 14:22:25 UTC (rev 1933)
@@ -65,6 +65,15 @@
<call target="dependencies"/>
<fail message="gtksourceview-sharp dependency not found"/>
</if>
+
+ <!-- create directories -->
+ <mkdir dir="${build.dir}"/>
+ <mkdir dir="${bin.dir}"/>
+ <mkdir dir="${lib.dir}"/>
+ <mkdir dir="${share.dir}"/>
+
+ <!-- copy log4net.dll to lib.dir -->
+ <copy file="${path::combine('lib', 'log4net.dll')}" todir="${lib.dir}"/>
</target>
<!-- output a list of required dependencies -->
@@ -82,22 +91,17 @@
<!-- cleanup build files -->
<target name="clean" description="remove all files created by the build task">
<!-- clean up plugin build files -->
- <nant buildfile="src/Plugins/plugins.build" target="clean"/>
+ <nant buildfile="src/Plugins/plugins.build" target="clean" failonerror="false"/>
<!-- clean up monodevelop build files -->
- <nant buildfile="src/Core/core.build" target="clean"/>
+ <nant buildfile="src/Core/core.build" target="clean" failonerror="false"/>
<!-- clean up library build files -->
- <nant buildfile="src/Libraries/libraries.build" target="clean"/>
+ <nant buildfile="src/Libraries/libraries.build" target="clean" failonerror="false"/>
<!-- remove the build directory -->
<delete dir="${build.dir}" failonerror="false"/>
</target>
<!-- build the project -->
<target name="build" depends="init" description="compiles the source code">
- <!-- create directories -->
- <mkdir dir="${build.dir}"/>
- <mkdir dir="${bin.dir}"/>
- <mkdir dir="${lib.dir}"/>
- <mkdir dir="${share.dir}"/>
<!-- build monodevelop.exe -->
<nant buildfile="src/Core/core.build" target="build"/>
<!-- build the libraries -->
Added: branches/MonoDevelop-plan-43/lib/log4net.dll
===================================================================
(Binary files differ)
Property changes on: branches/MonoDevelop-plan-43/lib/log4net.dll
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
More information about the Monodevelop-patches-list
mailing list