Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xbuild(1) [suse man page]

xbuild(1)						      General Commands Manual							 xbuild(1)

NAME
xbuild - Mono's tool to build MSBuild project files SYNOPSIS
xbuild [option] [project-file] 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 solution file or project file in the current directory, that has a *proj extension. OPTIONS
/target:T1[,TN] List of targets to build /property:Name=Value Set or override project properties /logger:<logger> Custom logger to log build events /verbosity:<level> Logger verbosity level : quiet, minimal, normal, detailed, diagnostic /validate Validate the project file against the schema /validate:<schema> Validate the project file against the specified schema /consoleloggerparameters:<params> Parameters for the console logger /nologo Don't show the initial xbuild banner /help Show xbuild usage /version Display xbuild version ENVIRONMENT VARIABLES
XBUILD_EMIT_SOLUTION If this variable is set, then the project file generated from a solution file is emitted. XBUILD_COLORS If this variable is set, it contains a string of the form "type=foreground,type=.." that specifies which color to use to display errors/warnings etc on some terminals. Type here can be: errors, warnings, messages or events events: These are project/target/task start and end event messages. The possible colors for foreground are: black, red, brightred, green, brightgreen, yellow, brightyellow, blue, brightblue, magenta, brightmagenta, cyan, brightcyan, grey, white and brightwhite. For example, you could set this variable from your shell: export XBUILD_COLORS XBUILD_COLORS=errors=brightred,warnings=blue You can disable the built-in color scheme by setting this variable to "disable". SEE ALSO
mono(1),mcs(1) COPYRIGHT
Copyright (C) 2009 Novell, Inc (http://www.novell.com) MAILING LISTS
Visit http://lists.ximian.com/mailman/listinfo/mono-devel-list for details. WEB SITE
Visit: http://www.mono-project.com for details xbuild(1)

Check Out this Related Man Page

Mono(httpcfg)															     Mono(httpcfg)

NAME
httpcfg - Mono Certificate Management for HttpListener SYNOPSIS
httpcfg [options] certificate DESCRIPTION
This tool is used to manage the certificates used by the HttpListener embeddable server class when the HttpListener is configured as an HTTPS server instead of an HTTP server. You must select one of the possible actions: add, delete or list. When adding a certificate (-add), you must provide the following information: a certificate (with the -cert flag) a Private Key file (with the -pvk argument, the filename is typically "key") and a port number (with the -port flag). When deleting a certificate (-del or -delete) you need to provide the port number. PARAMETERS
-add Adds a new certificate/private key combination for being used at a given port by the HttpListener API. -del, -delete Deletes the certificates associated for the port specified (must be specified separatedly). -list List all known certificates. -port PORT Specifies the port to add certificates to, or remove certificates from. -pvk FILE Specifies the Private Key file. -cert CERT Specifies the certificate file to use. EXAMPLES
httpcfg -add -port 8081 -pvk myfile.pvk -cert MyCert For more details on creating the certificate file and the private key, see the following web page: http://www.mono-project.com/UsingClientCertificatesWithXSP FILES
The certificates are stored in the ~/.mono/httplistener directory AUTHOR
httpcfg was written by Gonzalo Paniagua. COPYRIGHT
Copyright (C) 2006 Novell. MAILING LISTS
Visit http://lists.ximian.com/mailman/listinfo/mono-devel-list for details. WEB SITE
Visit http://www.mono-project.com for details SEE ALSO
makecert(1), signcode(1), cert2spc(1) The private key format: http://www.drh-consultancy.demon.co.uk/pvk.html Mono(httpcfg)
Man Page