|
4 | 4 | <xs:element name="Weavers">
|
5 | 5 | <xs:complexType>
|
6 | 6 | <xs:all>
|
| 7 | + <xs:element name="Costura" minOccurs="0" maxOccurs="1"> |
| 8 | + <xs:complexType> |
| 9 | + <xs:all> |
| 10 | + <xs:element minOccurs="0" maxOccurs="1" name="ExcludeAssemblies" type="xs:string"> |
| 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> |
| 13 | + </xs:annotation> |
| 14 | + </xs:element> |
| 15 | + <xs:element minOccurs="0" maxOccurs="1" name="IncludeAssemblies" type="xs:string"> |
| 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> |
| 18 | + </xs:annotation> |
| 19 | + </xs:element> |
| 20 | + <xs:element minOccurs="0" maxOccurs="1" name="Unmanaged32Assemblies" type="xs:string"> |
| 21 | + <xs:annotation> |
| 22 | + <xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with line breaks.</xs:documentation> |
| 23 | + </xs:annotation> |
| 24 | + </xs:element> |
| 25 | + <xs:element minOccurs="0" maxOccurs="1" name="Unmanaged64Assemblies" type="xs:string"> |
| 26 | + <xs:annotation> |
| 27 | + <xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with line breaks.</xs:documentation> |
| 28 | + </xs:annotation> |
| 29 | + </xs:element> |
| 30 | + <xs:element minOccurs="0" maxOccurs="1" name="PreloadOrder" type="xs:string"> |
| 31 | + <xs:annotation> |
| 32 | + <xs:documentation>The order of preloaded assemblies, delimited with line breaks.</xs:documentation> |
| 33 | + </xs:annotation> |
| 34 | + </xs:element> |
| 35 | + </xs:all> |
| 36 | + <xs:attribute name="CreateTemporaryAssemblies" type="xs:boolean"> |
| 37 | + <xs:annotation> |
| 38 | + <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> |
| 39 | + </xs:annotation> |
| 40 | + </xs:attribute> |
| 41 | + <xs:attribute name="IncludeDebugSymbols" type="xs:boolean"> |
| 42 | + <xs:annotation> |
| 43 | + <xs:documentation>Controls if .pdbs for reference assemblies are also embedded.</xs:documentation> |
| 44 | + </xs:annotation> |
| 45 | + </xs:attribute> |
| 46 | + <xs:attribute name="DisableCompression" type="xs:boolean"> |
| 47 | + <xs:annotation> |
| 48 | + <xs:documentation>Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option.</xs:documentation> |
| 49 | + </xs:annotation> |
| 50 | + </xs:attribute> |
| 51 | + <xs:attribute name="DisableCleanup" type="xs:boolean"> |
| 52 | + <xs:annotation> |
| 53 | + <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> |
| 54 | + </xs:annotation> |
| 55 | + </xs:attribute> |
| 56 | + <xs:attribute name="LoadAtModuleInit" type="xs:boolean"> |
| 57 | + <xs:annotation> |
| 58 | + <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> |
| 59 | + </xs:annotation> |
| 60 | + </xs:attribute> |
| 61 | + <xs:attribute name="IgnoreSatelliteAssemblies" type="xs:boolean"> |
| 62 | + <xs:annotation> |
| 63 | + <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> |
| 64 | + </xs:annotation> |
| 65 | + </xs:attribute> |
| 66 | + <xs:attribute name="ExcludeAssemblies" type="xs:string"> |
| 67 | + <xs:annotation> |
| 68 | + <xs:documentation>A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation> |
| 69 | + </xs:annotation> |
| 70 | + </xs:attribute> |
| 71 | + <xs:attribute name="IncludeAssemblies" type="xs:string"> |
| 72 | + <xs:annotation> |
| 73 | + <xs:documentation>A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation> |
| 74 | + </xs:annotation> |
| 75 | + </xs:attribute> |
| 76 | + <xs:attribute name="Unmanaged32Assemblies" type="xs:string"> |
| 77 | + <xs:annotation> |
| 78 | + <xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with |.</xs:documentation> |
| 79 | + </xs:annotation> |
| 80 | + </xs:attribute> |
| 81 | + <xs:attribute name="Unmanaged64Assemblies" type="xs:string"> |
| 82 | + <xs:annotation> |
| 83 | + <xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with |.</xs:documentation> |
| 84 | + </xs:annotation> |
| 85 | + </xs:attribute> |
| 86 | + <xs:attribute name="PreloadOrder" type="xs:string"> |
| 87 | + <xs:annotation> |
| 88 | + <xs:documentation>The order of preloaded assemblies, delimited with |.</xs:documentation> |
| 89 | + </xs:annotation> |
| 90 | + </xs:attribute> |
| 91 | + </xs:complexType> |
| 92 | + </xs:element> |
7 | 93 | <xs:element name="PropertyChanged" minOccurs="0" maxOccurs="1">
|
8 | 94 | <xs:complexType>
|
9 | 95 | <xs:attribute name="InjectOnPropertyNameChanged" type="xs:boolean">
|
|
0 commit comments