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

ant-msi.wxs 5.1 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <!--
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. -->
  15. <!--
  16. WiX File describing the MSI for Ant
  17. XSD lives at http://wix.cvs.sourceforge.net/*checkout*/wix/wix2.0/src/wix/Xsd/wix.xsd
  18. -->
  19. <Wix xmlns='http://schemas.microsoft.com/wix/2003/01/wi'>
  20. <Product Name="Apache Ant $(var.version)"
  21. Id="61A421CE-D93F-478c-98C8-9C31FCE44C7A"
  22. Version="$(var.version)" Language="1033"
  23. Manufacturer="Apache Software Foundation">
  24. <Package Id='????????-????-????-????-????????????'
  25. Keywords='Installer' Languages="1033"
  26. Description="Apache Ant $(var.version) installer"
  27. Comments='Apache Ant is a Java based build tool'
  28. Manufacturer='Apache Software Foundation'
  29. InstallerVersion='200'
  30. Compressed='yes'/>
  31. <Media Id='1' Cabinet='ant.cab' EmbedCab='yes' />
  32. <Directory Id='TARGETDIR' Name='SourceDir'>
  33. <Directory Id='ProgramFilesFolder' Name='PFiles'>
  34. <Directory Id='ASF' Name='Apache'
  35. LongName="Apache Software Foundation">
  36. <Directory Id='INSTALLDIR' Name='Ant'
  37. LongName='Ant $(var.version)'>
  38. <Component Id="licenses"
  39. Guid="09346EB3-08D2-4a7f-9D64-47E4E414FE65">
  40. <File DiskId="1" Id="fetch.xml" Name="fetch.xml"
  41. Vital="yes" src="$(var.dist.dir)/fetch.xml"/>
  42. <File DiskId="1" Id="INSTALL" Name="INSTALL"
  43. Vital="yes" src="$(var.dist.dir)/INSTALL"/>
  44. <File DiskId="1" Id="KEYS" Name="KEYS"
  45. Vital="yes" src="$(var.dist.dir)/KEYS"/>
  46. <File DiskId="1" Id="LICENSE" Name="LICENSE"
  47. Vital="yes" src="$(var.dist.dir)/LICENSE"/>
  48. <File DiskId="1" Id="LICENSE.dom" Name="LICENSE.dom"
  49. Vital="yes" src="$(var.dist.dir)/LICENSE.dom"/>
  50. <File DiskId="1" Id="LICENSE.sax" Name="LICENSE.sax"
  51. Vital="yes" src="$(var.dist.dir)/LICENSE.sax"/>
  52. <File DiskId="1" Id="LICENSE.xer" Name="LICENSE.xer"
  53. LongName="LICENSE.xerces"
  54. Vital="yes" src="$(var.dist.dir)/LICENSE.xerces"/>
  55. <File DiskId="1" Id="NOTICE" Name="NOTICE"
  56. Vital="yes" src="$(var.dist.dir)/NOTICE"/>
  57. <File DiskId="1" Id="README" Name="README"
  58. Vital="yes" src="$(var.dist.dir)/README"/>
  59. <File DiskId="1" Id="WHATSNEW" Name="WHATSNEW"
  60. Vital="yes" src="$(var.dist.dir)/WHATSNEW"/>
  61. <File DiskId="1" Id="welcome.htm" Name="welcome.htm"
  62. LongName="welcome.html"
  63. Vital="yes" src="$(var.dist.dir)/welcome.html"/>
  64. </Component>
  65. </Directory>
  66. </Directory>
  67. </Directory>
  68. <Directory Id="ProgramMenuFolder" Name="PMenu" LongName="Programs">
  69. <Directory Id="ProgramMenuDir" Name='Ant'
  70. LongName="Apache Ant $(var.version)" />
  71. </Directory>
  72. </Directory>
  73. <Feature Id="Complete" Level="1">
  74. <ComponentRef Id="manualIndex"/>
  75. <ComponentRef Id="licenses"/>
  76. <ComponentRef Id="component0"/>
  77. <ComponentRef Id="component1"/>
  78. <ComponentRef Id="component2"/>
  79. <ComponentRef Id="component3"/>
  80. <ComponentRef Id="component4"/>
  81. <ComponentRef Id="component5"/>
  82. <ComponentRef Id="component6"/>
  83. <ComponentRef Id="component7"/>
  84. <ComponentRef Id="component8"/>
  85. <ComponentRef Id="component9"/>
  86. <ComponentRef Id="component86"/>
  87. <ComponentRef Id="component87"/>
  88. <ComponentRef Id="component88"/>
  89. <ComponentRef Id="component89"/>
  90. <ComponentRef Id="component90"/>
  91. <ComponentRef Id="component91"/>
  92. <ComponentRef Id="component92"/>
  93. <ComponentRef Id="component93"/>
  94. <ComponentRef Id="component94"/>
  95. <ComponentRef Id="component95"/>
  96. </Feature>
  97. </Product>
  98. <Fragment>
  99. <DirectoryRef Id="manual">
  100. <Component Id="manualIndex"
  101. Guid="3125AB68-1388-49aa-89F8-9F5B80EBE64B">
  102. <File DiskId="1" Id="antManualIndex"
  103. Name="INDEX_1.HTM" LongName="index.html"
  104. Vital="yes" src="$(var.dist.dir)/docs/manual/index.html">
  105. <Shortcut Id="startmenuAntDocs"
  106. Directory="ProgramMenuDir" Name="Manual" />
  107. </File>
  108. </Component>
  109. </DirectoryRef>
  110. </Fragment>
  111. </Wix>