|
4 | 4 | <xs:element name="Weavers"> |
5 | 5 | <xs:complexType> |
6 | 6 | <xs:all> |
7 | | - <xs:element name="Costura" minOccurs="0" maxOccurs="1"> |
| 7 | + <xs:element name="ILMerge" minOccurs="0" maxOccurs="1"> |
8 | 8 | <xs:complexType> |
9 | 9 | <xs:all> |
10 | | - <xs:element minOccurs="0" maxOccurs="1" name="ExcludeAssemblies" type="xs:string"> |
| 10 | + <xs:element name="IncludeAssemblies" type="xs:string" minOccurs="0" maxOccurs="1"> |
11 | 11 | <xs:annotation> |
12 | | - <xs:documentation>A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks</xs:documentation> |
| 12 | + <xs:documentation>A regular expression matching the assembly names to include in merging.</xs:documentation> |
13 | 13 | </xs:annotation> |
14 | 14 | </xs:element> |
15 | | - <xs:element minOccurs="0" maxOccurs="1" name="IncludeAssemblies" type="xs:string"> |
| 15 | + <xs:element name="ExcludeAssemblies" type="xs:string" minOccurs="0" maxOccurs="1"> |
16 | 16 | <xs:annotation> |
17 | | - <xs:documentation>A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.</xs:documentation> |
| 17 | + <xs:documentation>A regular expression matching the assembly names to exclude from merging.</xs:documentation> |
18 | 18 | </xs:annotation> |
19 | 19 | </xs:element> |
20 | | - <xs:element minOccurs="0" maxOccurs="1" name="ExcludeRuntimeAssemblies" type="xs:string"> |
| 20 | + <xs:element name="IncludeResources" type="xs:string" minOccurs="0" maxOccurs="1"> |
21 | 21 | <xs:annotation> |
22 | | - <xs:documentation>A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks</xs:documentation> |
| 22 | + <xs:documentation>A regular expression matching the resource names to include in merging.</xs:documentation> |
23 | 23 | </xs:annotation> |
24 | 24 | </xs:element> |
25 | | - <xs:element minOccurs="0" maxOccurs="1" name="IncludeRuntimeAssemblies" type="xs:string"> |
| 25 | + <xs:element name="ExcludeResources" type="xs:string" minOccurs="0" maxOccurs="1"> |
26 | 26 | <xs:annotation> |
27 | | - <xs:documentation>A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.</xs:documentation> |
| 27 | + <xs:documentation>A regular expression matching the resource names to exclude from merging.</xs:documentation> |
28 | 28 | </xs:annotation> |
29 | 29 | </xs:element> |
30 | | - <xs:element minOccurs="0" maxOccurs="1" name="Unmanaged32Assemblies" type="xs:string"> |
| 30 | + <xs:element name="HideImportedTypes" type="xs:boolean" minOccurs="0" maxOccurs="1"> |
31 | 31 | <xs:annotation> |
32 | | - <xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with line breaks.</xs:documentation> |
| 32 | + <xs:documentation>A switch to control whether the imported types are hidden (made private) or keep their visibility unchanged. Default is 'true'</xs:documentation> |
33 | 33 | </xs:annotation> |
34 | 34 | </xs:element> |
35 | | - <xs:element minOccurs="0" maxOccurs="1" name="Unmanaged64Assemblies" type="xs:string"> |
| 35 | + <xs:element name="NamespacePrefix" type="xs:string" minOccurs="0" maxOccurs="1"> |
36 | 36 | <xs:annotation> |
37 | | - <xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with line breaks.</xs:documentation> |
| 37 | + <xs:documentation>A string that is used as prefix for the namespace of the imported types.</xs:documentation> |
38 | 38 | </xs:annotation> |
39 | 39 | </xs:element> |
40 | | - <xs:element minOccurs="0" maxOccurs="1" name="PreloadOrder" type="xs:string"> |
| 40 | + <xs:element name="FullImport" type="xs:boolean" minOccurs="0" maxOccurs="1"> |
41 | 41 | <xs:annotation> |
42 | | - <xs:documentation>The order of preloaded assemblies, delimited with line breaks.</xs:documentation> |
| 42 | + <xs:documentation>A switch to control whether to import the full assemblies or only the referenced types. Default is 'false'</xs:documentation> |
43 | 43 | </xs:annotation> |
44 | 44 | </xs:element> |
45 | 45 | </xs:all> |
46 | | - <xs:attribute name="CreateTemporaryAssemblies" type="xs:boolean"> |
47 | | - <xs:annotation> |
48 | | - <xs:documentation>This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file.</xs:documentation> |
49 | | - </xs:annotation> |
50 | | - </xs:attribute> |
51 | | - <xs:attribute name="IncludeDebugSymbols" type="xs:boolean"> |
52 | | - <xs:annotation> |
53 | | - <xs:documentation>Controls if .pdbs for reference assemblies are also embedded.</xs:documentation> |
54 | | - </xs:annotation> |
55 | | - </xs:attribute> |
56 | | - <xs:attribute name="IncludeRuntimeReferences" type="xs:boolean"> |
57 | | - <xs:annotation> |
58 | | - <xs:documentation>Controls if runtime assemblies are also embedded.</xs:documentation> |
59 | | - </xs:annotation> |
60 | | - </xs:attribute> |
61 | | - <xs:attribute name="UseRuntimeReferencePaths" type="xs:boolean"> |
62 | | - <xs:annotation> |
63 | | - <xs:documentation>Controls whether the runtime assemblies are embedded with their full path or only with their assembly name.</xs:documentation> |
64 | | - </xs:annotation> |
65 | | - </xs:attribute> |
66 | | - <xs:attribute name="DisableCompression" type="xs:boolean"> |
67 | | - <xs:annotation> |
68 | | - <xs:documentation>Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option.</xs:documentation> |
69 | | - </xs:annotation> |
70 | | - </xs:attribute> |
71 | | - <xs:attribute name="DisableCleanup" type="xs:boolean"> |
72 | | - <xs:annotation> |
73 | | - <xs:documentation>As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off.</xs:documentation> |
74 | | - </xs:annotation> |
75 | | - </xs:attribute> |
76 | | - <xs:attribute name="LoadAtModuleInit" type="xs:boolean"> |
77 | | - <xs:annotation> |
78 | | - <xs:documentation>Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code.</xs:documentation> |
79 | | - </xs:annotation> |
80 | | - </xs:attribute> |
81 | | - <xs:attribute name="IgnoreSatelliteAssemblies" type="xs:boolean"> |
| 46 | + <xs:attribute name="IncludeAssemblies" type="xs:string"> |
82 | 47 | <xs:annotation> |
83 | | - <xs:documentation>Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior.</xs:documentation> |
| 48 | + <xs:documentation>A regular expression matching the assembly names to include in merging.</xs:documentation> |
84 | 49 | </xs:annotation> |
85 | 50 | </xs:attribute> |
86 | 51 | <xs:attribute name="ExcludeAssemblies" type="xs:string"> |
87 | 52 | <xs:annotation> |
88 | | - <xs:documentation>A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation> |
89 | | - </xs:annotation> |
90 | | - </xs:attribute> |
91 | | - <xs:attribute name="IncludeAssemblies" type="xs:string"> |
92 | | - <xs:annotation> |
93 | | - <xs:documentation>A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation> |
| 53 | + <xs:documentation>A regular expression matching the assembly names to exclude from merging.</xs:documentation> |
94 | 54 | </xs:annotation> |
95 | 55 | </xs:attribute> |
96 | | - <xs:attribute name="ExcludeRuntimeAssemblies" type="xs:string"> |
| 56 | + <xs:attribute name="IncludeResources" type="xs:string"> |
97 | 57 | <xs:annotation> |
98 | | - <xs:documentation>A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation> |
| 58 | + <xs:documentation>A regular expression matching the resource names to include in merging.</xs:documentation> |
99 | 59 | </xs:annotation> |
100 | 60 | </xs:attribute> |
101 | | - <xs:attribute name="IncludeRuntimeAssemblies" type="xs:string"> |
| 61 | + <xs:attribute name="ExcludeResources" type="xs:string"> |
102 | 62 | <xs:annotation> |
103 | | - <xs:documentation>A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation> |
| 63 | + <xs:documentation>A regular expression matching the resource names to exclude from merging.</xs:documentation> |
104 | 64 | </xs:annotation> |
105 | 65 | </xs:attribute> |
106 | | - <xs:attribute name="Unmanaged32Assemblies" type="xs:string"> |
| 66 | + <xs:attribute name="HideImportedTypes" type="xs:boolean"> |
107 | 67 | <xs:annotation> |
108 | | - <xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with |.</xs:documentation> |
| 68 | + <xs:documentation>A switch to control whether the imported types are hidden (made private) or keep their visibility unchanged. Default is 'true'</xs:documentation> |
109 | 69 | </xs:annotation> |
110 | 70 | </xs:attribute> |
111 | | - <xs:attribute name="Unmanaged64Assemblies" type="xs:string"> |
| 71 | + <xs:attribute name="NamespacePrefix" type="xs:string"> |
112 | 72 | <xs:annotation> |
113 | | - <xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with |.</xs:documentation> |
| 73 | + <xs:documentation>A string that is used as prefix for the namespace of the imported types.</xs:documentation> |
114 | 74 | </xs:annotation> |
115 | 75 | </xs:attribute> |
116 | | - <xs:attribute name="PreloadOrder" type="xs:string"> |
| 76 | + <xs:attribute name="FullImport" type="xs:boolean"> |
117 | 77 | <xs:annotation> |
118 | | - <xs:documentation>The order of preloaded assemblies, delimited with |.</xs:documentation> |
| 78 | + <xs:documentation>A switch to control whether to import the full assemblies or only the referenced types. Default is 'false'</xs:documentation> |
119 | 79 | </xs:annotation> |
120 | 80 | </xs:attribute> |
121 | 81 | </xs:complexType> |
|
0 commit comments