FodyWeavers.xsd 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  3. <!-- This file was generated by Fody. Manual changes to this file will be lost when your project is rebuilt. -->
  4. <xs:element name="Weavers">
  5. <xs:complexType>
  6. <xs:all>
  7. <xs:element name="PropertyChanged" minOccurs="0" maxOccurs="1">
  8. <xs:complexType>
  9. <xs:attribute name="InjectOnPropertyNameChanged" type="xs:boolean">
  10. <xs:annotation>
  11. <xs:documentation>Used to control if the On_PropertyName_Changed feature is enabled.</xs:documentation>
  12. </xs:annotation>
  13. </xs:attribute>
  14. <xs:attribute name="TriggerDependentProperties" type="xs:boolean">
  15. <xs:annotation>
  16. <xs:documentation>Used to control if the Dependent properties feature is enabled.</xs:documentation>
  17. </xs:annotation>
  18. </xs:attribute>
  19. <xs:attribute name="EnableIsChangedProperty" type="xs:boolean">
  20. <xs:annotation>
  21. <xs:documentation>Used to control if the IsChanged property feature is enabled.</xs:documentation>
  22. </xs:annotation>
  23. </xs:attribute>
  24. <xs:attribute name="EventInvokerNames" type="xs:string">
  25. <xs:annotation>
  26. <xs:documentation>Used to change the name of the method that fires the notify event. This is a string that accepts multiple values in a comma separated form.</xs:documentation>
  27. </xs:annotation>
  28. </xs:attribute>
  29. <xs:attribute name="CheckForEquality" type="xs:boolean">
  30. <xs:annotation>
  31. <xs:documentation>Used to control if equality checks should be inserted. If false, equality checking will be disabled for the project.</xs:documentation>
  32. </xs:annotation>
  33. </xs:attribute>
  34. <xs:attribute name="CheckForEqualityUsingBaseEquals" type="xs:boolean">
  35. <xs:annotation>
  36. <xs:documentation>Used to control if equality checks should use the Equals method resolved from the base class.</xs:documentation>
  37. </xs:annotation>
  38. </xs:attribute>
  39. <xs:attribute name="UseStaticEqualsFromBase" type="xs:boolean">
  40. <xs:annotation>
  41. <xs:documentation>Used to control if equality checks should use the static Equals method resolved from the base class.</xs:documentation>
  42. </xs:annotation>
  43. </xs:attribute>
  44. <xs:attribute name="SuppressWarnings" type="xs:boolean">
  45. <xs:annotation>
  46. <xs:documentation>Used to turn off build warnings from this weaver.</xs:documentation>
  47. </xs:annotation>
  48. </xs:attribute>
  49. <xs:attribute name="SuppressOnPropertyNameChangedWarning" type="xs:boolean">
  50. <xs:annotation>
  51. <xs:documentation>Used to turn off build warnings about mismatched On_PropertyName_Changed methods.</xs:documentation>
  52. </xs:annotation>
  53. </xs:attribute>
  54. </xs:complexType>
  55. </xs:element>
  56. <xs:element name="Costura" minOccurs="0" maxOccurs="1">
  57. <xs:complexType>
  58. <xs:all>
  59. <xs:element minOccurs="0" maxOccurs="1" name="ExcludeAssemblies" type="xs:string">
  60. <xs:annotation>
  61. <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>
  62. </xs:annotation>
  63. </xs:element>
  64. <xs:element minOccurs="0" maxOccurs="1" name="IncludeAssemblies" type="xs:string">
  65. <xs:annotation>
  66. <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>
  67. </xs:annotation>
  68. </xs:element>
  69. <xs:element minOccurs="0" maxOccurs="1" name="Unmanaged32Assemblies" type="xs:string">
  70. <xs:annotation>
  71. <xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with line breaks.</xs:documentation>
  72. </xs:annotation>
  73. </xs:element>
  74. <xs:element minOccurs="0" maxOccurs="1" name="Unmanaged64Assemblies" type="xs:string">
  75. <xs:annotation>
  76. <xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with line breaks.</xs:documentation>
  77. </xs:annotation>
  78. </xs:element>
  79. <xs:element minOccurs="0" maxOccurs="1" name="PreloadOrder" type="xs:string">
  80. <xs:annotation>
  81. <xs:documentation>The order of preloaded assemblies, delimited with line breaks.</xs:documentation>
  82. </xs:annotation>
  83. </xs:element>
  84. </xs:all>
  85. <xs:attribute name="CreateTemporaryAssemblies" type="xs:boolean">
  86. <xs:annotation>
  87. <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>
  88. </xs:annotation>
  89. </xs:attribute>
  90. <xs:attribute name="IncludeDebugSymbols" type="xs:boolean">
  91. <xs:annotation>
  92. <xs:documentation>Controls if .pdbs for reference assemblies are also embedded.</xs:documentation>
  93. </xs:annotation>
  94. </xs:attribute>
  95. <xs:attribute name="DisableCompression" type="xs:boolean">
  96. <xs:annotation>
  97. <xs:documentation>Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option.</xs:documentation>
  98. </xs:annotation>
  99. </xs:attribute>
  100. <xs:attribute name="DisableCleanup" type="xs:boolean">
  101. <xs:annotation>
  102. <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>
  103. </xs:annotation>
  104. </xs:attribute>
  105. <xs:attribute name="LoadAtModuleInit" type="xs:boolean">
  106. <xs:annotation>
  107. <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>
  108. </xs:annotation>
  109. </xs:attribute>
  110. <xs:attribute name="IgnoreSatelliteAssemblies" type="xs:boolean">
  111. <xs:annotation>
  112. <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>
  113. </xs:annotation>
  114. </xs:attribute>
  115. <xs:attribute name="ExcludeAssemblies" type="xs:string">
  116. <xs:annotation>
  117. <xs:documentation>A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation>
  118. </xs:annotation>
  119. </xs:attribute>
  120. <xs:attribute name="IncludeAssemblies" type="xs:string">
  121. <xs:annotation>
  122. <xs:documentation>A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation>
  123. </xs:annotation>
  124. </xs:attribute>
  125. <xs:attribute name="Unmanaged32Assemblies" type="xs:string">
  126. <xs:annotation>
  127. <xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with |.</xs:documentation>
  128. </xs:annotation>
  129. </xs:attribute>
  130. <xs:attribute name="Unmanaged64Assemblies" type="xs:string">
  131. <xs:annotation>
  132. <xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with |.</xs:documentation>
  133. </xs:annotation>
  134. </xs:attribute>
  135. <xs:attribute name="PreloadOrder" type="xs:string">
  136. <xs:annotation>
  137. <xs:documentation>The order of preloaded assemblies, delimited with |.</xs:documentation>
  138. </xs:annotation>
  139. </xs:attribute>
  140. </xs:complexType>
  141. </xs:element>
  142. </xs:all>
  143. <xs:attribute name="VerifyAssembly" type="xs:boolean">
  144. <xs:annotation>
  145. <xs:documentation>'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed.</xs:documentation>
  146. </xs:annotation>
  147. </xs:attribute>
  148. <xs:attribute name="VerifyIgnoreCodes" type="xs:string">
  149. <xs:annotation>
  150. <xs:documentation>A comma-separated list of error codes that can be safely ignored in assembly verification.</xs:documentation>
  151. </xs:annotation>
  152. </xs:attribute>
  153. <xs:attribute name="GenerateXsd" type="xs:boolean">
  154. <xs:annotation>
  155. <xs:documentation>'false' to turn off automatic generation of the XML Schema file.</xs:documentation>
  156. </xs:annotation>
  157. </xs:attribute>
  158. </xs:complexType>
  159. </xs:element>
  160. </xs:schema>