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>2011-03-08 15:38:13 +0300
committerAnkit Jain <radical@corewars.org>2011-03-08 15:42:30 +0300
commita1e8d3de9a3794443d27f0989f43bb96b31faf76 (patch)
tree4478d3bdec9133483b53299c019b457a03018dc4 /man/xbuild.1
parentcc90ce0cf4830262c4599c06a1fd3504d99e113e (diff)
[xbuild] Implement FileLogger . Fix #676650 .
* FileLogger.cs: Implement Add corresponding command line args for file loggers. Update man page.
Diffstat (limited to 'man/xbuild.1')
-rw-r--r--man/xbuild.130
1 files changed, 27 insertions, 3 deletions
diff --git a/man/xbuild.1 b/man/xbuild.1
index f1f0858521a..b1ec1f28531 100644
--- a/man/xbuild.1
+++ b/man/xbuild.1
@@ -41,8 +41,32 @@ Validate the project file against the schema
.B \//validate:<schema>
Validate the project file against the specified schema
.TP
-.B \//consoleloggerparameters:<params>
-Parameters for the console logger : PerfomanceSummary, NoSummary, NoItemAndPropertyList
+.B \//consoleloggerparameters:<params> , /clp:<params>
+Parameters for the console logger : PerfomanceSummary, Summary, NoSummary, NoItemAndPropertyList, Verbosity
+.TP
+.B \//filelogger[n] , /fl[n]
+Logs the output to a file, named 'msbuild.log' by default. If the optional number 'n' is
+specified, then it logs to 'msbuild[n].log' . Parameters for this logger, including
+the log file name can be specified via a corresponding /flp[n] option. Default verbosity
+for file loggers is 'detailed. 'n' can be between 1-9.
+.TP
+.B \//fileloggerparameters[n]:<params> , /flp[n]:<params>
+Parameters for a file logger. This implies a corresponding /fl[n]. 'n' can be between
+1-9, and is used to add upto 10 file loggers. Parameters can be, besides the ones available
+for console logger:
+.RS
+.TP
+.I LogFile=<file>
+File to which the build log will be written.
+.TP
+.I Append
+If this is used, then the log file is appended to, else a new one will be created.
+.TP
+.I Encoding=<encoding>
+Encoding to use for the log file, eg. UTF-8, ASCII.
+.TP
+Eg: xbuild foo.csproj /flp:Verbosity=normal "/flp1:LogFile=build.log;Append;Encoding=ASCII"
+.RE
.TP
.B \//nologo
Don't show the initial xbuild banner
@@ -162,7 +186,7 @@ looks in "/Library/Frameworks/Mono.framework/External/pkgconfig" .
.SH SEE ALSO
.BR mono(1), mcs(1)
.SH COPYRIGHT
-Copyright (C) 2009 Novell, Inc (http://www.novell.com)
+Copyright (C) 2011 Novell, Inc (http://www.novell.com)
.SH MAILING LISTS
Visit http://lists.ximian.com/mailman/listinfo/mono-devel-list for details.
.SH WEB SITE