Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sgen(1) [debian man page]

Mono(sgen)																Mono(sgen)

NAME
sgen - Mono XML Serializer GENerator SYNOPSIS
sgen [options] DESCRIPTION
Generates pre-compilable custom XML serializer classes for specific types. OPTIONS
--assembly[:filename] , -a Specifies the assembly filename to process. --type[:typefullname] , -t Explicitly specifies the runtime type to process. --reference:[filename] , -r Specifies an assembly filename, which is referenced by the target assembly and thus required to process it. --compiler:[options] , -c Specifies compiler options. --proxytypes , -p (Not supported yet.) --debug , -d Indicates the compiler to generate debug information. --keep , -k Indicates the compiler to keep generated temporary source files. --force , -f Indicates the generator to force overwriting existing assembly. --out:[output-directory] , -o Specifies the output directory for resulting files. By default, it is current directory. --nologo , -n Indicates to not print the logo for this tool. --silent , -s Indicates the tool to run silently. --verbose , -v Indicates the tool to be more verbose on its progress. --help , -? Display command line help. FEATURES
It generates a file which contains a set of classes for custom XML serialization. The resulting classes enable xml serialization faster since it does not have to generate serialization classes dynamically at run time. Generated classes are supported only after 2.0 profile. AUTHOR
Written by Lluis Sanchez Gual COPYRIGHT
Copyright (C) 2006 Novell. MAILING LISTS
Visit http://lists.ximian.com/mailman/listinfo/mono-list for details. WEB SITE
Visit http://www.mono-project.com for details SEE ALSO
xsd(1),wsdl(1),genxs(1) Mono(sgen)

Check Out this Related Man Page

Mono(Mono 1.0)															    Mono(Mono 1.0)

NAME
mono-service, mono-service2 - Mono ServiceProcess host SYNOPSIS
mono-service [options] program.exe DESCRIPTION
The mono-service is a host to run services built with the ServiceProcess assembly. Use mono-service to run services that use the 1.0 assemblies and use mono-service2 to run services that use the 2.0 assemblies. Services can be paused by sending the SIGUSR1 signal to the process, and execution can be resumed by sending the SIGUSR2 signal. The ser- vice can be cleanly shutdown by sending the SIGTERM signal to the process. Mono programs started with mono-service run with the MONO_DISABLE_SHM variable set. This means that certain Mono features that depend on it are not available to services. The following options can be used to control the service: -d:DIRECTORY Use this option to specify the working directory for the service. The default is the current directory. -l:LOCKFILE Specifies the file to use for locking, the default is a filename constructed in /tmp based on the name of the program that hosts the service. -m:MESSAGE Name to show in the syslog. -n:NAME Use this to specify the service to be launched (if the program contains more than one service). The default is to run the first defined service. --debug Use this option to prevent mono-service from redirecting stdin and stdout and prevent the program to be sent to the background. Equivalent to --no-daemon --no-daemon Use this option to prevent mono-service from redirecting stdin and stdout and prevent the program to be sent to the background. Equivalent to --debug. CONTROL
You can control the service by sending signals to the process, you can use the following commands: Pausing service: kill -USR1 `cat <lock file>` Resuming service: kill -USR2 `cat <lock file>` Stopping the service: kill `cat <lock file>` EXAMPLES
Start the MyService.exe assembly, with a lock in /root/service-lock: mono-service -l:/root/service-lock MyService.exe DEBUGGING
Messages produced by the service are logged on syslog. MAILING LISTS
Visit http://lists.ximian.com/mailman/listinfo/mono-list for details. WEB SITE
Visit: http://www.mono-project.com for details SEE ALSO
mono(1) N:System.ServiceProcess Mono(Mono 1.0)
Man Page