From 96a84b3311c03d711f0ecfa34622a4517acc6b31 Mon Sep 17 00:00:00 2001 From: Atsushi Eno Date: Tue, 14 Nov 2006 13:26:50 +0000 Subject: [PATCH] 2006-11-14 Atsushi Enomoto in man: * sgen.1, Makefile: added manpage for sgen. in scripts: * Makefile.am : added sgen. svn path=/trunk/mono/; revision=67841 --- man/ChangeLog | 4 +++ man/Makefile.am | 2 +- man/sgen.1 | 70 +++++++++++++++++++++++++++++++++++++++++++++ scripts/Makefile.am | 1 + 4 files changed, 76 insertions(+), 1 deletion(-) create mode 100644 man/sgen.1 diff --git a/man/ChangeLog b/man/ChangeLog index cc9029e0dba..893b452c2e7 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,3 +1,7 @@ +2006-11-14 Atsushi Enomoto + + * sgen.1, Makefile: added manpage for sgen. + 2006-10-03 Dick Porter * mono.1: Document the new MONO_IO_PORTABILITY_HELP environment diff --git a/man/Makefile.am b/man/Makefile.am index 4bd97b817f5..af6f0c09d98 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -2,6 +2,6 @@ man_MANS = mcs.1 mono.1 monostyle.1 mono-config.5 sqlsharp.1 oldmono.1 ilasm.1 \ cert2spc.1 cilc.1 genxs.1 wsdl.1 disco.1 soapsuds.1 makecert.1 \ chktrust.1 setreg.1 sn.1 secutil.1 signcode.1 certmgr.1 monop.1 xsd.1 gacutil.1 \ macpack.1 mkbundle.1 dtd2xsd.1 permview.1 prj2make.1 mono-service.1 mono-shlib-cop.1 \ - al.1 mozroots.1 mono-xmltool.1 + al.1 mozroots.1 mono-xmltool.1 sgen.1 EXTRA_DIST = $(man_MANS) diff --git a/man/sgen.1 b/man/sgen.1 new file mode 100644 index 00000000000..11e17149c10 --- /dev/null +++ b/man/sgen.1 @@ -0,0 +1,70 @@ +.\" +.\" sgen manual page. +.\" Copyright 2006 Novell +.\" Author: +.\" Atsushi Enomoto +.\" +.TH Mono "sgen" +.SH NAME +sgen \- Mono XML Serializer GENerator +.SH SYNOPSIS +.PP +.B sgen [options] +.SH DESCRIPTION +Generates pre-compilable custom XML serializer classes for specific types. +.SH OPTIONS +.TP +.I "--assembly[:filename]", "-a" +Specifies the assembly filename to process. +.TP +.I "--type[:typefullname]", "-t" +Explicitly specifies the runtime type to process. +.TP +.I "--reference:[filename]", "-r" +Specifies an assembly filename, which is referenced by the target assembly +and thus required to process it. +.TP +.I "--compiler:[options]", "-c" +Specifies compiler options. +.TP +.I "--proxytypes", "-p" +(Not supported yet.) +.TP +.I "--debug", "-d" +Indicates the compiler to generate debug information. +.TP +.I "--keep", "-k" +Indicates the compiler to keep generated temporary source files. +.TP +.I "--force", "-f" +Indicates the generator to force overwriting existing assembly. +.TP +.I "--out:[output-directory]", "-o" +Specifies the output directory for resulting files. By default, it is current directory. +.TP +.I "--nologo", "-n" +Indicates to not print the logo for this tool. +.TP +.I "--silent", "-s" +Indicates the tool to run silently. +.TP +.I "--verbose", "-v" +Indicates the tool to be more verbose on its progress. +.TP +.I "--help", "-?" +Display command line help. +.SH FEATURES +.TP +It generates a file which contains a set of classes for custom XML serialization. The output can be precompiled and thus with those classes xml serialization could run faster since it does not have to generate serialization classes dynamically at run time. +.PP +Generated classes are supported only after 2.0 profile. +.SH AUTHOR +Written by Lluis Sanchez Gual +.SH COPYRIGHT +Copyright (C) 2006 Novell. +.SH MAILING LISTS +Visit http://lists.ximian.com/mailman/listinfo/mono-list for details. +.SH WEB SITE +Visit http://www.mono-project.com for details +.SH SEE ALSO +.BR xsd(1),wsdl(1),genxs(1) diff --git a/scripts/Makefile.am b/scripts/Makefile.am index ce9ed062ebe..6ae07e1a690 100644 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -50,6 +50,7 @@ scripts_2_0 = \ monop2 \ resgen2 \ wsdl2 \ + sgen \ xbuild scripts_service = mono-service mono-service2 -- 2.25.1