工具箱相关
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Costura.Fody.xcf 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema">
  3. <xs:all>
  4. <xs:element minOccurs="0" maxOccurs="1" name="ExcludeAssemblies" type="xs:string">
  5. <xs:annotation>
  6. <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>
  7. </xs:annotation>
  8. </xs:element>
  9. <xs:element minOccurs="0" maxOccurs="1" name="IncludeAssemblies" type="xs:string">
  10. <xs:annotation>
  11. <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>
  12. </xs:annotation>
  13. </xs:element>
  14. <xs:element minOccurs="0" maxOccurs="1" name="ExcludeRuntimeAssemblies" type="xs:string">
  15. <xs:annotation>
  16. <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>
  17. </xs:annotation>
  18. </xs:element>
  19. <xs:element minOccurs="0" maxOccurs="1" name="IncludeRuntimeAssemblies" type="xs:string">
  20. <xs:annotation>
  21. <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>
  22. </xs:annotation>
  23. </xs:element>
  24. <xs:element minOccurs="0" maxOccurs="1" name="Unmanaged32Assemblies" type="xs:string">
  25. <xs:annotation>
  26. <xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with line breaks.</xs:documentation>
  27. </xs:annotation>
  28. </xs:element>
  29. <xs:element minOccurs="0" maxOccurs="1" name="Unmanaged64Assemblies" type="xs:string">
  30. <xs:annotation>
  31. <xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with line breaks.</xs:documentation>
  32. </xs:annotation>
  33. </xs:element>
  34. <xs:element minOccurs="0" maxOccurs="1" name="PreloadOrder" type="xs:string">
  35. <xs:annotation>
  36. <xs:documentation>The order of preloaded assemblies, delimited with line breaks.</xs:documentation>
  37. </xs:annotation>
  38. </xs:element>
  39. </xs:all>
  40. <xs:attribute name="CreateTemporaryAssemblies" type="xs:boolean">
  41. <xs:annotation>
  42. <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>
  43. </xs:annotation>
  44. </xs:attribute>
  45. <xs:attribute name="IncludeDebugSymbols" type="xs:boolean">
  46. <xs:annotation>
  47. <xs:documentation>Controls if .pdbs for reference assemblies are also embedded.</xs:documentation>
  48. </xs:annotation>
  49. </xs:attribute>
  50. <xs:attribute name="IncludeRuntimeReferences" type="xs:boolean">
  51. <xs:annotation>
  52. <xs:documentation>Controls if runtime assemblies are also embedded.</xs:documentation>
  53. </xs:annotation>
  54. </xs:attribute>
  55. <xs:attribute name="UseRuntimeReferencePaths" type="xs:boolean">
  56. <xs:annotation>
  57. <xs:documentation>Controls whether the runtime assemblies are embedded with their full path or only with their assembly name.</xs:documentation>
  58. </xs:annotation>
  59. </xs:attribute>
  60. <xs:attribute name="DisableCompression" type="xs:boolean">
  61. <xs:annotation>
  62. <xs:documentation>Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option.</xs:documentation>
  63. </xs:annotation>
  64. </xs:attribute>
  65. <xs:attribute name="DisableCleanup" type="xs:boolean">
  66. <xs:annotation>
  67. <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>
  68. </xs:annotation>
  69. </xs:attribute>
  70. <xs:attribute name="LoadAtModuleInit" type="xs:boolean">
  71. <xs:annotation>
  72. <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>
  73. </xs:annotation>
  74. </xs:attribute>
  75. <xs:attribute name="IgnoreSatelliteAssemblies" type="xs:boolean">
  76. <xs:annotation>
  77. <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>
  78. </xs:annotation>
  79. </xs:attribute>
  80. <xs:attribute name="ExcludeAssemblies" type="xs:string">
  81. <xs:annotation>
  82. <xs:documentation>A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation>
  83. </xs:annotation>
  84. </xs:attribute>
  85. <xs:attribute name="IncludeAssemblies" type="xs:string">
  86. <xs:annotation>
  87. <xs:documentation>A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation>
  88. </xs:annotation>
  89. </xs:attribute>
  90. <xs:attribute name="ExcludeRuntimeAssemblies" type="xs:string">
  91. <xs:annotation>
  92. <xs:documentation>A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation>
  93. </xs:annotation>
  94. </xs:attribute>
  95. <xs:attribute name="IncludeRuntimeAssemblies" type="xs:string">
  96. <xs:annotation>
  97. <xs:documentation>A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation>
  98. </xs:annotation>
  99. </xs:attribute>
  100. <xs:attribute name="Unmanaged32Assemblies" type="xs:string">
  101. <xs:annotation>
  102. <xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with |.</xs:documentation>
  103. </xs:annotation>
  104. </xs:attribute>
  105. <xs:attribute name="Unmanaged64Assemblies" type="xs:string">
  106. <xs:annotation>
  107. <xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with |.</xs:documentation>
  108. </xs:annotation>
  109. </xs:attribute>
  110. <xs:attribute name="PreloadOrder" type="xs:string">
  111. <xs:annotation>
  112. <xs:documentation>The order of preloaded assemblies, delimited with |.</xs:documentation>
  113. </xs:annotation>
  114. </xs:attribute>
  115. </xs:complexType>