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:
authorAnkit Jain <radical@corewars.org>2009-08-21 02:28:39 +0400
committerAnkit Jain <radical@corewars.org>2009-08-21 02:28:39 +0400
commit8ad2b68f219a89159bc744bbf9891b041854a411 (patch)
tree70616769103e147a517f8494f8f4cb37b36a7099 /man/xbuild.1
parent6163d748f10b39613dbe46d748d50fb8cf2a4a15 (diff)
* Makefile.am (man_MANS): Add xbuild.1
* xbuild.1: New. svn path=/trunk/mono/; revision=140383
Diffstat (limited to 'man/xbuild.1')
-rw-r--r--man/xbuild.153
1 files changed, 53 insertions, 0 deletions
diff --git a/man/xbuild.1 b/man/xbuild.1
new file mode 100644
index 00000000000..5dfca3f40e9
--- /dev/null
+++ b/man/xbuild.1
@@ -0,0 +1,53 @@
+.TH "xbuild" 1
+.SH NAME
+xbuild \- Mono's tool to build MSBuild project files
+.SH SYNOPSIS
+.B xbuild
+[option] [project-file]
+.SH DESCRIPTION
+xbuild can be used to build MSBuild project files. Integrated Development
+Environments like MonoDevelop and "Microsoft Visual Studio .NET" use msbuild
+project file format.
+
+xbuild takes the path of the project or solution file to build, as the main argument.
+If no file is specified then it tries to build any project file in the current
+directory, that has a *proj extension.
+.SH OPTIONS
+.TP
+.B \//target:T1[,TN]
+List of targets to build
+.TP
+.B \//property:Name=Value
+Set or override project properties
+.TP
+.B \//logger:<logger>
+Custom logger to log build events
+.TP
+.B \//verbosity:<level>
+Logger verbosity level : quiet, minimal, normal, detailed, diagnostic
+.TP
+.B \//validate
+Validate the project file against the schema
+.TP
+.B \//validate:<schema>
+Validate the project file against the specified schema
+.TP
+.B \//consoleloggerparameters:<params>
+Parameters for the console logger
+.TP
+.B \//nologo
+Don't show the initial xbuild banner
+.TP
+.B \//help
+Show xbuild usage
+.TP
+.B \//version
+Display xbuild version
+.SH SEE ALSO
+.BR mono(1), mcs(1)
+.SH COPYRIGHT
+Copyright (C) 2009 Novell, Inc (http://www.novell.com)
+.SH MAILING LISTS
+Visit http://lists.ximian.com/mailman/listinfo/mono-devel-list for details.
+.SH WEB SITE
+Visit: http://www.mono-project.com for details