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:
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>