* Makefile.am (man_MANS): Add xbuild.1
authorAnkit Jain <radical@corewars.org>
Thu, 20 Aug 2009 22:28:39 +0000 (22:28 -0000)
committerAnkit Jain <radical@corewars.org>
Thu, 20 Aug 2009 22:28:39 +0000 (22:28 -0000)
* xbuild.1: New.

svn path=/trunk/mono/; revision=140383

man/ChangeLog
man/Makefile.am
man/xbuild.1 [new file with mode: 0644]

index c3f1d59e19104586d748f5dc70f76ca4f5d14d8c..0b6942c557e5871653d6d0ae9996b4be524705c5 100644 (file)
@@ -1,3 +1,8 @@
+2009-08-21  Ankit Jain  <jankit@novell.com>
+
+       * Makefile.am (man_MANS): Add xbuild.1
+       * xbuild.1: New.
+
 2009-06-12  Jb Evain  <jbevain@novell.com>
 
        * mcs.1: update the /platform information.
index 88a95767b7bae5de2a6bd7fef7d88a587144a846..698edee0b119e6733c39961012d8f6a17e7ffec0 100644 (file)
@@ -50,6 +50,7 @@ man_MANS = \
        soapsuds.1            \
        sqlsharp.1            \
        wsdl.1                \
+       xbuild.1              \
        xsd.1
 
 EXTRA_DIST = $(man_MANS)
diff --git a/man/xbuild.1 b/man/xbuild.1
new file mode 100644 (file)
index 0000000..5dfca3f
--- /dev/null
@@ -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