Changeset 529
- Timestamp:
- 11/13/2008 3:20:14 AM (3 years ago)
- File:
-
- 1 edited
-
branches/eraser6/Installer/Eraser.wxs (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/Installer/Eraser.wxs
r522 r529 32 32 33 33 <Directory Id="TARGETDIR" Name="SourceDir"> 34 <Directory Id="ProgramFilesFolder"> 35 <Directory Id="INSTALLLOCATION" Name="Eraser"> 36 <Component Id="EraserMain" Guid="D9D7F28B-1F5E-4da4-8FF2-4F8DC031E472"> 37 <File Id="EraserExe" Name="Eraser.exe" DiskId="1" Source="..\bin\Release\Eraser.exe"> 38 <Shortcut Advertise="yes" Id="EraserExeProgramMenuShortcut" Directory="ProgramMenuFolder" 39 Name="Eraser" Icon="Eraser.exe" IconIndex="0" /> 40 <Shortcut Advertise="yes" Id="EraserExeDesktopShortcut" Directory="DesktopFolder" 41 Name="Eraser" Icon="Eraser.exe" IconIndex="0" /> 42 </File> 43 <File Id="BevelLine" Name="BevelLine.dll" DiskId="1" Source="..\bin\Release\BevelLine.dll" /> 44 <File Id="EraserManager" Name="Eraser.Manager.dll" DiskId="1" Source="..\bin\Release\Eraser.Manager.dll" /> 45 <File Id="EraserUtil" Name="Eraser.Util.dll" DiskId="1" Source="..\bin\Release\Eraser.Util.dll" /> 46 </Component> 47 48 <Directory Id="EraserLangEnDir" Name="en"> 49 <Component Id="EraserLangEn" Guid="5BB2BEF6-1271-4786-9A40-552DD6223B1F"> 50 <File Id="EraserEn" Name="Eraser.resources.dll" DiskId="1" Source="..\bin\Release\en\Eraser.resources.dll" /> 51 </Component> 52 </Directory> 53 <Directory Id="EraserLangNlDir" Name="nl"> 54 <Component Id="EraserLangNl" Guid="A404FC89-2216-4e14-96D5-30F54D120FBB"> 55 <File Id="EraserNl" Name="Eraser.resources.dll" DiskId="1" Source="..\bin\Release\nl\Eraser.resources.dll" /> 56 </Component> 57 </Directory> 58 59 <Directory Id="EraserPluginsDir" Name="Plugins"> 60 <Component Id="EraserPlugins" Guid="39A307BD-4244-4972-BC12-A5F5A76E684A"> 61 <File Id="DefaultPlugins" Name="Eraser.DefaultPlugins.dll" DiskId="1" Source="..\bin\Release\Plugins\Eraser.DefaultPlugins.dll" /> 62 <File Id="ISAAC" Name="ISAAC.dll" DiskId="1" Source="..\bin\Release\Plugins\ISAAC.dll" /> 63 </Component> 64 65 <Directory Id="EraserPluginsLangEnDir" Name="en"> 66 <Component Id="EraserPluginsLangEn" Guid="23B2B7DD-C518-4dde-A229-94CA9122B995"> 67 <File Id="EraserDefaultPluginsEn" Name="Eraser.DefaultPlugins.resources.dll" DiskId="1" 68 Source="..\bin\Release\Plugins\en\Eraser.DefaultPlugins.resources.dll" /> 69 </Component> 70 </Directory> 71 <Directory Id="EraserPluginsLangNlDir" Name="nl"> 72 <Component Id="EraserPluginsLangNl" Guid="CD85AC3F-2B4E-4ac8-8FF9-6BD3BC90BD3D"> 73 <File Id="EraserDefaultPluginsNl" Name="Eraser.DefaultPlugins.resources.dll" DiskId="1" 74 Source="..\bin\Release\Plugins\nl\Eraser.DefaultPlugins.resources.dll" /> 75 </Component> 76 </Directory> 77 </Directory> 34 <?if $(sys.BUILDARCH) = "x64"?> 35 <Directory Id="ProgramFiles64Folder"> 36 <Directory Id="PFFolder" /> 78 37 </Directory> 79 </Directory> 38 <?else?> 39 <Directory Id="ProgramFilesFolder"> 40 <Directory Id="PFFolder" /> 41 </Directory> 42 <?endif?> 80 43 81 44 <Directory Id="ProgramMenuFolder" Name="ProgramMenu" /> … … 84 47 85 48 <Feature Id="EraserMain" Title="Eraser" Description="The main Eraser program files." Level="1" 86 ConfigurableDirectory="INSTALLLOCATION" >49 ConfigurableDirectory="INSTALLLOCATION" AllowAdvertise="system" Display="expand"> 87 50 <ComponentRef Id="EraserMain" /> 88 51 <ComponentRef Id="EraserLangEn" /> … … 91 54 92 55 <Feature Id="EraserLanguages" Title="Alternative Languages" 93 Description="Alternative localised version of Eraser" Level="10"> 56 Description="Alternative localised version of Eraser." Level="10" 57 Display="expand"> 94 58 <Feature Id="EraserLanguagesNl" Title="Dutch" Description="Dutch localisation" Level="10"> 95 59 <ComponentRef Id="EraserLangNl" /> … … 110 74 <WixVariable Id="WixUINewIco" Value="Resources\New Folder.ico" /> 111 75 </Product> 76 77 <Fragment Id="EraserMainFragment"> 78 <DirectoryRef Id="PFFolder"> 79 <Directory Id="INSTALLLOCATION" Name="Eraser"> 80 <Component Id="EraserMain" Guid="D9D7F28B-1F5E-4da4-8FF2-4F8DC031E472"> 81 <File Id="EraserExe" Name="Eraser.exe" Source="..\bin\Release\Eraser.exe" 82 ProcessorArchitecture="msil" KeyPath="yes"> 83 <Shortcut Advertise="yes" Id="EraserExeProgramMenuShortcut" Directory="ProgramMenuFolder" 84 Name="Eraser" Icon="Eraser.exe" IconIndex="0" /> 85 <Shortcut Advertise="yes" Id="EraserExeDesktopShortcut" Directory="DesktopFolder" 86 Name="Eraser" Icon="Eraser.exe" IconIndex="0" /> 87 </File> 88 <File Id="BevelLine" Name="BevelLine.dll" Source="..\bin\Release\BevelLine.dll" 89 ProcessorArchitecture="msil"/> 90 <File Id="EraserManager" Name="Eraser.Manager.dll" 91 Source="..\bin\Release\Eraser.Manager.dll" ProcessorArchitecture="msil" /> 92 <File Id="EraserUtil" Name="Eraser.Util.dll" 93 Source="..\bin\Release\Eraser.Util.dll" ProcessorArchitecture="msil" /> 94 </Component> 95 96 <Directory Id="EraserLangEnDir" Name="en"> 97 <Component Id="EraserLangEn" Guid="5BB2BEF6-1271-4786-9A40-552DD6223B1F"> 98 <File Id="EraserEn" Name="Eraser.resources.dll" 99 Source="..\bin\Release\en\Eraser.resources.dll" 100 ProcessorArchitecture="msil" /> 101 </Component> 102 </Directory> 103 <Directory Id="EraserLangNlDir" Name="nl"> 104 <Component Id="EraserLangNl" Guid="A404FC89-2216-4e14-96D5-30F54D120FBB"> 105 <File Id="EraserNl" Name="Eraser.resources.dll" 106 Source="..\bin\Release\nl\Eraser.resources.dll" 107 ProcessorArchitecture="msil" /> 108 </Component> 109 </Directory> 110 111 <Directory Id="EraserPluginsDir" Name="Plugins"> 112 <Component Id="EraserPlugins" Guid="39A307BD-4244-4972-BC12-A5F5A76E684A"> 113 <File Id="DefaultPlugins" Name="Eraser.DefaultPlugins.dll" 114 Source="..\bin\Release\Plugins\Eraser.DefaultPlugins.dll" 115 ProcessorArchitecture="msil" /> 116 <File Id="ISAAC" Name="ISAAC.dll" 117 Source="..\bin\Release\Plugins\ISAAC.dll" 118 ProcessorArchitecture="msil" /> 119 </Component> 120 121 <Directory Id="EraserPluginsLangEnDir" Name="en"> 122 <Component Id="EraserPluginsLangEn" Guid="23B2B7DD-C518-4dde-A229-94CA9122B995"> 123 <File Id="EraserDefaultPluginsEn" Name="Eraser.DefaultPlugins.resources.dll" 124 Source="..\bin\Release\Plugins\en\Eraser.DefaultPlugins.resources.dll" 125 ProcessorArchitecture="msil" /> 126 </Component> 127 </Directory> 128 <Directory Id="EraserPluginsLangNlDir" Name="nl"> 129 <Component Id="EraserPluginsLangNl" Guid="CD85AC3F-2B4E-4ac8-8FF9-6BD3BC90BD3D"> 130 <File Id="EraserDefaultPluginsNl" Name="Eraser.DefaultPlugins.resources.dll" 131 Source="..\bin\Release\Plugins\nl\Eraser.DefaultPlugins.resources.dll" 132 ProcessorArchitecture="msil" /> 133 </Component> 134 </Directory> 135 </Directory> 136 </Directory> 137 </DirectoryRef> 138 </Fragment> 112 139 </Wix>
Note: See TracChangeset
for help on using the changeset viewer.
