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:
authorMiguel de Icaza <miguel@gnome.org>2002-06-26 16:20:55 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-06-26 16:20:55 +0400
commit49a60e26336d02eb8b5b943f27d7d2375335d211 (patch)
tree0adf0c307f9d605bb3525cbb6244aa5038fea874 /man/mono-config.5
parentfc7aec7bc06dc70d2c24a4669170bcc58ae3a2fc (diff)
Add manual page for mono configuration
svn path=/trunk/mono/; revision=5464
Diffstat (limited to 'man/mono-config.5')
-rw-r--r--man/mono-config.536
1 files changed, 36 insertions, 0 deletions
diff --git a/man/mono-config.5 b/man/mono-config.5
new file mode 100644
index 00000000000..1800f42b8d2
--- /dev/null
+++ b/man/mono-config.5
@@ -0,0 +1,36 @@
+.\"
+.\" mono configuration page.
+.\" (C) Ximian, Inc.
+.\" Author:
+.\" Miguel de Icaza (miguel@gnu.org)
+.\"
+.TH Mono "Mono 1.0"
+.SH NAME
+mono-config \- Mono runtime file format configuration
+.SH DESCRIPTION
+The Mono runtime will load configuration data from the
+installation prefix /etc/mono/config file, the ~/.mono/config or from
+the file pointed by the MONO_CONFIG environment variable.
+.PP
+This file controls the behavior of the runtime.
+.PP
+The file contains an XML-like file with various sections, all of them
+contained inside a
+.B<configuration>
+section (It actually uses GMarkup
+to parse the file).
+.SH <dllmap> directive
+You use the dllmap directive to map shared libraries referenced by
+P/Invoke in your assemblies to a different shared library.
+.PP
+This is typically used to map Windows libraries to Unix library names.
+.SH EXAMPLES
+The following example maps references to the `cygwin1.dll' shared
+library to the `libc.so.6' file.
+.nf
+<configuration>
+ <dllmap dll="cygwin1.dll" target="libc.so.6"/>
+</configuration>
+.fi
+.SH SEE ALSO
+.BR mono(1), monodis(1), mint(1) \ No newline at end of file