工具箱相关
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Costura.Fody.xcf 4.5KB

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