1Mono(sgen) Mono(sgen)
2
3
4
6 sgen - Mono XML Serializer GENerator
7
9 sgen [options]
10
12 Generates pre-compilable custom XML serializer classes for specific
13 types.
14
16 --assembly[:filename] , -a
17 Specifies the assembly filename to process.
18
19 --type[:typefullname] , -t
20 Explicitly specifies the runtime type to process.
21
22 --reference:[filename] , -r
23 Specifies an assembly filename, which is referenced by the tar‐
24 get assembly and thus required to process it.
25
26 --compiler:[options] , -c
27 Specifies compiler options.
28
29 --proxytypes , -p
30 (Not supported yet.)
31
32 --debug , -d
33 Indicates the compiler to generate debug information.
34
35 --keep , -k
36 Indicates the compiler to keep generated temporary source files.
37
38 --force , -f
39 Indicates the generator to force overwriting existing assembly.
40
41 --out:[output-directory] , -o
42 Specifies the output directory for resulting files. By default,
43 it is current directory.
44
45 --nologo , -n
46 Indicates to not print the logo for this tool.
47
48 --silent , -s
49 Indicates the tool to run silently.
50
51 --verbose , -v
52 Indicates the tool to be more verbose on its progress.
53
54 --help , -?
55 Display command line help.
56
58 It generates a file which contains a set of classes for custom XML
59 serialization. The resulting classes enable xml serialization faster
60 since it does not have to generate serialization classes dynamically at
61 run time.
62
63 Generated classes are supported only after 2.0 profile.
64
66 Written by Lluis Sanchez Gual
67
69 Copyright (C) 2006 Novell.
70
72 Visit http://lists.ximian.com/mailman/listinfo/mono-list for details.
73
75 Visit http://www.mono-project.com for details
76
78 xsd(1),wsdl(1),genxs(1)
79
80
81
82 Mono(sgen)