Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Janssen <jeroen@mono-cvs.ximian.com>2002-12-11 00:54:53 +0300
committerJeroen Janssen <jeroen@mono-cvs.ximian.com>2002-12-11 00:54:53 +0300
commit7f7df1e6e5a972df8eef166609ead82ea143592a (patch)
treefbfaaa9d34fcf8351ab03129a96aef6506b15158 /mcs/class/Mono.Directory.LDAP
parent46564e3d3453835a9f755a099238600636e8ace5 (diff)
2002-12-10 Jeroen Janssen <japj@darius.demon.nl>
* added Mono.Directory.LDAP.build file svn path=/trunk/mcs/; revision=9541
Diffstat (limited to 'mcs/class/Mono.Directory.LDAP')
-rw-r--r--mcs/class/Mono.Directory.LDAP/ChangeLog3
-rw-r--r--mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP.build47
2 files changed, 50 insertions, 0 deletions
diff --git a/mcs/class/Mono.Directory.LDAP/ChangeLog b/mcs/class/Mono.Directory.LDAP/ChangeLog
index e69de29bb2d..d3d2ea656cc 100644
--- a/mcs/class/Mono.Directory.LDAP/ChangeLog
+++ b/mcs/class/Mono.Directory.LDAP/ChangeLog
@@ -0,0 +1,3 @@
+2002-12-10 Jeroen Janssen <japj@darius.demon.nl>
+
+ * added Mono.Directory.LDAP.build file \ No newline at end of file
diff --git a/mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP.build b/mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP.build
new file mode 100644
index 00000000000..a7bc223ca43
--- /dev/null
+++ b/mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP.build
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+
+<!-- NAnt build file for Mono.Directory.LDAP.dll -->
+
+<project name="Mono.Directory.LDAP" default="build">
+ <property name="debug" value="false"/>
+
+ <target name="build">
+ <csc target="library" output="../lib/Mono.Directory.LDAP.dll" debug="${debug}">
+ <arg value="/nowarn:1595"/>
+ <arg value="/nowarn:0067"/>
+ <arg value="/nowarn:0109"/>
+ <arg value="/nowarn:0169"/>
+ <arg value="/nowarn:0649"/>
+ <arg value="/unsafe"/>
+ <arg value="/noconfig"/>
+<!-- TODO: check values
+ <arg value="/r:System.dll"/>
+ <arg value="/r:System.EnterpriseServices.dll"/>
+ <arg value="/r:System.Xml.dll"/>
+ <arg value="/r:System.Data.dll"/>
+ <arg value="/r:../lib/Mono.Data.Tds.dll"/>
+-->
+ <sources>
+ <includes name="**/*.cs"/>
+ <excludes name="Test/**"/>
+
+ </sources>
+<!-- TODO: check values
+ <references>
+ <includes name="../lib/corlib.dll"/>
+ <includes name="../lib/System.dll"/>
+ <includes name="../lib/System.EnterpriseServices.dll"/>
+ <includes name="../lib/System.Xml.dll"/>
+ <includes name="../lib/System.Data.dll"/>
+ <includes name="../lib/Mono.Data.Tds.dll"/>
+ </references>
+-->
+ </csc>
+ </target>
+ <target name="test" depends="build">
+ <nant basedir="Test" target="test"/>
+ </target>
+ <target name="clean">
+ <delete file="../lib/Mono.Directory.LDAP.dll" failonerror="false"/>
+ </target>
+</project>