markus / MarkusWixSetup / Product.wxs @ a1e2ba68
이력 | 보기 | 이력해설 | 다운로드 (17.8 KB)
1 |
<?xml version="1.0" encoding="UTF-8"?> |
---|---|
2 |
|
3 |
<!-- The name of the product --> |
4 |
<?define Name = "Markus Client Setup" ?> |
5 |
<!-- The Description of the product --> |
6 |
<?define Description = "Markus Client Setup Program." ?> |
7 |
<!-- The manufacturer, for setup package publisher and folder info --> |
8 |
<?define Manufacturer = "Doftech (c)" ?> |
9 |
<!-- The version number of this setup package--> |
10 |
<?define Version = "1.0.5" ?> |
11 |
<!-- UpgradeCode must be unique and not changed once the first version of the program is installed. --> |
12 |
<?define UpgradeCode = "{25DA3824-3F14-4040-826B-F8D1783E1288}" ?> |
13 |
<!-- The name of the Cabinet --> |
14 |
<?define CabName = "MarkusClient.cab" ?> |
15 |
|
16 |
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:utilExt="http://schemas.microsoft.com/wix/UtilExtension" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension"> |
17 |
<!-- Projects Build Path--> |
18 |
<!--<?define KCOM_TargetDir=$(var.KCOM.TargetDir)?>--> |
19 |
<?define KCOM_TargetDir="..\Setup\Release_Default\"?> |
20 |
<!--<?define Markus.Fonts_TargetDir=$(var.Markus.Fonts.TargetDir)?> |
21 |
<?define MarkupToPDF_TargetDir=$(var.MarkupToPDF.TargetDir)?> |
22 |
<?define IKCOM_TargetDir=$(var.IKCOM.TargetDir)?> |
23 |
<?define ZoomAndPan_TargetDir=$(var.ZoomAndPan.TargetDir)?> |
24 |
<?define KCOMDataModel_TargetDir=$(var.KCOMDataModel.TargetDir)?> |
25 |
<?define IIpc_TargetDir=$(var.IIpc.TargetDir)?> |
26 |
<?define CommonLib_TargetDir=$(var.CommonLib.TargetDir)?> |
27 |
<?define DownloadManager_TargetDir=$(var.DownloadManager.TargetDir)?>--> |
28 |
<Product Id="*" Name="$(var.Name)" Language="1033" Version="$(var.Version)" Manufacturer="$(var.Manufacturer)" UpgradeCode="$(var.UpgradeCode)"> |
29 |
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" Manufacturer="$(var.Manufacturer)" Platform="x64"/> |
30 |
<!--<Media Id="1" Cabinet="$(var.CabName)" EmbedCab="yes" />--> |
31 |
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> |
32 |
<!--Embed Cabinet into single msi file--> |
33 |
<Media Id="1" Cabinet="$(var.CabName)" EmbedCab="yes" /> |
34 |
<WixVariable Id="WixUILicenseRtf" Value="Resources/license.rtf" /> |
35 |
<WixVariable Id="WixUIBannerBmp" Value="Resources/DOFTECH_LOGO.bmp" /> |
36 |
<WixVariable Id="WixUIDialogBmp" Value="Resources/DialogImage.bmp" /> |
37 |
<!--<Condition Message="This application requires .NET Framework 4.5.2 Please install the .NET Framework then run this installer again."> |
38 |
<![CDATA[Installed OR WIX_IS_NETFRAMEWORK_452_OR_LATER_INSTALLED]]> |
39 |
</Condition>--> |
40 |
<PropertyRef Id="WIX_IS_NETFRAMEWORK_452_OR_LATER_INSTALLED" /> |
41 |
<Condition Message="This application requires .NET Framework 4.5.2 Please install the .NET Framework then run this installer again."> |
42 |
<![CDATA[Installed OR WIX_IS_NETFRAMEWORK_452_OR_LATER_INSTALLED]]> |
43 |
</Condition> |
44 |
<Feature Id="ProductFeature" Title="$(var.Name)" Level="1"> |
45 |
<ComponentGroupRef Id="ProductComponents" /> |
46 |
<ComponentGroupRef Id="telerikResourceDE" /> |
47 |
<ComponentGroupRef Id="telerikResourceES" /> |
48 |
<ComponentGroupRef Id="telerikResourceFR" /> |
49 |
<ComponentGroupRef Id="telerikResourceIT" /> |
50 |
<ComponentGroupRef Id="telerikResourceNL" /> |
51 |
<ComponentGroupRef Id="telerikResourceTR" /> |
52 |
<ComponentGroupRef Id="PluginComponents" /> |
53 |
<ComponentGroupRef Id="RESOURCES_FILES" /> |
54 |
</Feature> |
55 |
<Feature Id="Complete"> |
56 |
<ComponentRef Id="REG_PROTOCOL_WRITE" /> |
57 |
<ComponentRef Id="REG_WARNONOPEN_WRITE" /> |
58 |
</Feature> |
59 |
</Product> |
60 |
<Fragment> |
61 |
<Directory Id="TARGETDIR" Name="SourceDir"> |
62 |
<Directory Id="ProgramFiles64Folder"> |
63 |
<Directory Id="ROOTDIRECTORY" Name="DOFTECH"> |
64 |
<Directory Id="INSTALLFOLDER" Name="MARKUS"> |
65 |
<Directory Id="RESOURCES_FOLDER" Name="Resources"/> |
66 |
<Directory Id="TELERIK_RESOURCES_DE" Name="de"/> |
67 |
<Directory Id="TELERIK_RESOURCES_ES" Name="es"/> |
68 |
<Directory Id="TELERIK_RESOURCES_FR" Name="fr"/> |
69 |
<Directory Id="TELERIK_RESOURCES_IT" Name="it"/> |
70 |
<Directory Id="TELERIK_RESOURCES_NL" Name="nl"/> |
71 |
<Directory Id="TELERIK_RESOURCES_TR" Name="tr"/> |
72 |
<Directory Id="PLUGIN_FOLDER" Name="Plugin"/> |
73 |
|
74 |
</Directory> |
75 |
</Directory> |
76 |
</Directory> |
77 |
</Directory> |
78 |
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLFOLDER"/> |
79 |
<UIRef Id="WixUI_InstallDir" /> |
80 |
</Fragment> |
81 |
<Fragment> |
82 |
<DirectoryRef Id="INSTALLFOLDER"> |
83 |
<Component Id="REG_PROTOCOL_WRITE" Guid="D8795ADA-D3EC-4F34-86C3-7D6BE54420EA" KeyPath="yes"> |
84 |
<RegistryKey Key="KCOM" Root="HKCR" Action="createAndRemoveOnUninstall"> |
85 |
<RegistryValue Name="URL Protocol" Value="" Type="string" /> |
86 |
</RegistryKey> |
87 |
<RegistryKey ForceCreateOnInstall="yes" Key="KCOM\shell" Root="HKCR" /> |
88 |
<RegistryKey Key="KCOM\shell\open\command" Root="HKCR" Action="createAndRemoveOnUninstall"> |
89 |
<RegistryValue Value=""[INSTALLFOLDER]KCOM.exe" "%1"" Type="string" /> |
90 |
</RegistryKey> |
91 |
</Component> |
92 |
</DirectoryRef> |
93 |
</Fragment> |
94 |
<Fragment> |
95 |
<DirectoryRef Id="INSTALLFOLDER"> |
96 |
<Component Id="REG_WARNONOPEN_WRITE" Guid="171260E2-66FC-4088-9F1F-3FAEB29250CA"> |
97 |
<RegistryKey Key="Software\KCOM" Root="HKCU" Action="createAndRemoveOnUninstall" /> |
98 |
<RegistryKey Key="Software\Microsoft\Internet Explorer\KCOM" Root="HKCU" Action="createAndRemoveOnUninstall"> |
99 |
<RegistryValue Name="WarnOnOpen" Value="0" Type="integer" /> |
100 |
</RegistryKey> |
101 |
<RegistryKey Key="Software\KCOM" Root="HKLM" Action="createAndRemoveOnUninstall" /> |
102 |
</Component> |
103 |
</DirectoryRef> |
104 |
</Fragment> |
105 |
<Fragment> |
106 |
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> |
107 |
<Component Id="KCOM.exe" Guid="46557a40-9a95-49bb-ac07-396d1f6b29d5" KeyPath="yes"> |
108 |
<File Id="KCOM.exe" Name="KCOM.exe" Source="$(var.KCOM_TargetDir)KCOM.exe" /> |
109 |
</Component> |
110 |
<Component Id="MarkupToPDF.dll" Guid="d0ebf263-5077-43d1-aad0-4109d3c6b714" KeyPath="yes"> |
111 |
<File Id="MarkupToPDF.dll" Name="MarkupToPDF.dll" Source="$(var.KCOM_TargetDir)MarkupToPDF.dll" /> |
112 |
</Component> |
113 |
<Component Id="KCOM.exe.config" Guid="c0849c0d-8bd1-4ce2-ad4c-28460b45e057" KeyPath="yes"> |
114 |
<File Id="KCOM.exe.config" Name="KCOM.exe.config" Source="$(var.KCOM_TargetDir)KCOM.exe.config" /> |
115 |
</Component> |
116 |
<!--<Component Id="KCOM.XmlSerializers.dll" Guid="b292425a-6e5b-47b7-a6ea-069dbdea4621"> |
117 |
<File Id="KCOM.XmlSerializers.dll" Name="KCOM.XmlSerializers.dll" Source="$(var.KCOM_TargetDir)KCOM.XmlSerializers.dll" /> |
118 |
</Component>--> |
119 |
<Component Id="IKCOM.dll" Guid="b292425a-6e5b-47b7-a6ea-069dbdea4620" KeyPath="yes"> |
120 |
<File Id="IKCOM.dll" Name="IKCOM.dll" Source="$(var.KCOM_TargetDir)IKCOM.dll" /> |
121 |
</Component> |
122 |
<Component Id="Telerik.Windows.Controls.Docking.dll" Guid="2dc42cae-1ec7-4df3-ae6f-2b792ae14dfd" KeyPath="yes"> |
123 |
<File Id="Telerik.Windows.Controls.Docking.dll" Name="Telerik.Windows.Controls.Docking.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Controls.Docking.dll" /> |
124 |
</Component> |
125 |
<Component Id="Telerik.Windows.Controls.dll" Guid="3a3d5d51-ac4c-439c-94be-b6f10d060788" KeyPath="yes"> |
126 |
<File Id="Telerik.Windows.Controls.dll" Name="Telerik.Windows.Controls.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Controls.dll" /> |
127 |
</Component> |
128 |
<Component Id="Telerik.Windows.Controls.RibbonView.dll" Guid="e3f0e4ea-f8a4-41e6-8176-2fd8a7c772c2" KeyPath="yes"> |
129 |
<File Id="Telerik.Windows.Controls.RibbonView.dll" Name="Telerik.Windows.Controls.RibbonView.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Controls.RibbonView.dll" /> |
130 |
</Component> |
131 |
<Component Id="Telerik.Windows.Controls.GridView.dll" Guid="b924d9f6-c069-45b1-b108-6fc94dc6db4c" KeyPath="yes"> |
132 |
<File Id="Telerik.Windows.Controls.GridView.dll" Name="Telerik.Windows.Controls.GridView.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Controls.GridView.dll" /> |
133 |
</Component> |
134 |
<Component Id="Telerik.Windows.Controls.Input.dll" Guid="85899224-4df3-40ce-bebe-6311b4ccf3ea" KeyPath="yes"> |
135 |
<File Id="Telerik.Windows.Controls.Input.dll" Name="Telerik.Windows.Controls.Input.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Controls.Input.dll" /> |
136 |
</Component> |
137 |
<Component Id="Telerik.Windows.Data.dll" Guid="b84f31be-5f4a-419b-bf6b-1409fa08b41f" KeyPath="yes"> |
138 |
<File Id="Telerik.Windows.Data.dll" Name="Telerik.Windows.Data.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Data.dll" /> |
139 |
</Component> |
140 |
<Component Id="Telerik.Windows.Controls.Navigation.dll" Guid="b1e59162-013c-4b77-9ca5-12c28d624910" KeyPath="yes"> |
141 |
<File Id="Telerik.Windows.Controls.Navigation.dll" Name="Telerik.Windows.Controls.Navigation.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Controls.Navigation.dll" /> |
142 |
</Component> |
143 |
<Component Id="Telerik.Windows.Themes.VisualStudio2013.dll" Guid="b1e59162-013c-4b77-9ca5-12c28d624911" KeyPath="yes"> |
144 |
<File Id="Telerik.Windows.Themes.VisualStudio2013.dll" Name="Telerik.Windows.Themes.VisualStudio2013.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Themes.VisualStudio2013.dll" /> |
145 |
</Component> |
146 |
<Component Id="System.Windows.Interactivity.dll" Guid="f819fe4c-4d3e-4648-97d6-876f60083bfc" KeyPath="yes"> |
147 |
<File Id="System.Windows.Interactivity.dll" Name="System.Windows.Interactivity.dll" Source="$(var.KCOM_TargetDir)System.Windows.Interactivity.dll" /> |
148 |
</Component> |
149 |
<Component Id="ToggleSwitch.dll" Guid="02b61dc0-763c-40be-b4dc-55d28ae76664" KeyPath="yes"> |
150 |
<File Id="ToggleSwitch.dll" Name="ToggleSwitch.dll" Source="$(var.KCOM_TargetDir)ToggleSwitch.dll" /> |
151 |
</Component> |
152 |
<Component Id="Markus.Fonts.dll" Guid="412a971c-eef0-4ee2-9814-a00106e944ac" KeyPath="yes"> |
153 |
<File Id="Markus.Fonts.dll" Name="Markus.Fonts.dll" Source="$(var.KCOM_TargetDir)Markus.Fonts.dll" /> |
154 |
</Component> |
155 |
<Component Id="ZoomAndPan.dll" Guid="c445a9a0-c226-467e-85a6-447404e4d971" KeyPath="yes"> |
156 |
<File Id="ZoomAndPan.dll" Name="ZoomAndPan.dll" Source="$(var.KCOM_TargetDir)ZoomAndPan.dll" /> |
157 |
</Component> |
158 |
<Component Id="Microsoft.Expression.Interactions.dll" Guid="08234b5b-e239-44c7-84b8-a3643b181720" KeyPath="yes"> |
159 |
<File Id="Microsoft.Expression.Interactions.dll" Name="Microsoft.Expression.Interactions.dll" Source="$(var.KCOM_TargetDir)Microsoft.Expression.Interactions.dll" /> |
160 |
</Component> |
161 |
<Component Id="itextsharp.dll" Guid="f2a39a21-96a1-4c5a-8b70-8a9b61fa64bf" KeyPath="yes"> |
162 |
<File Id="itextsharp.dll" Name="itextsharp.dll" Source="$(var.KCOM_TargetDir)itextsharp.dll" /> |
163 |
</Component> |
164 |
<Component Id="log4net.dll" Guid="9961f179-cc36-4d98-9f43-428143221985" KeyPath="yes"> |
165 |
<File Id="log4net.dll" Name="log4net.dll" Source="$(var.KCOM_TargetDir)log4net.dll" /> |
166 |
</Component> |
167 |
<Component Id="KCOMDataModel.dll" Guid="8c30fcf1-14a9-4394-b695-a08bd2934aca" KeyPath="yes"> |
168 |
<File Id="KCOMDataModel.dll" Name="KCOMDataModel.dll" Source="$(var.KCOM_TargetDir)KCOMDataModel.dll" /> |
169 |
</Component> |
170 |
<Component Id="Microsoft.AspNet.SignalR.Client.dll" Guid="19b0e1d2-ada7-4d47-a59f-a920442e2870" KeyPath="yes"> |
171 |
<File Id="Microsoft.AspNet.SignalR.Client.dll" Name="Microsoft.AspNet.SignalR.Client.dll" Source="$(var.KCOM_TargetDir)Microsoft.AspNet.SignalR.Client.dll" /> |
172 |
</Component> |
173 |
<Component Id="Bytescout.PDFExtractor.dll" Guid="5ce3bd36-bf5a-4d60-b5a0-a290bc25d916" KeyPath="yes"> |
174 |
<File Id="Bytescout.PDFExtractor.dll" Name="Bytescout.PDFExtractor.dll" Source="$(var.KCOM_TargetDir)Bytescout.PDFExtractor.dll" /> |
175 |
</Component> |
176 |
<Component Id="IIpc.dll" Guid="5241d4eb-d4b4-44b9-ae04-8b8c79f7cf66" KeyPath="yes"> |
177 |
<File Id="IIpc.dll" Name="IIpc.dll" Source="$(var.KCOM_TargetDir)IIpc.dll" /> |
178 |
</Component> |
179 |
<Component Id="CommonLib.dll" Guid="934b8641-cadb-47ee-b31a-278a507110ec" KeyPath="yes"> |
180 |
<File Id="CommonLib.dll" Name="CommonLib.dll" Source="$(var.KCOM_TargetDir)CommonLib.dll" /> |
181 |
</Component> |
182 |
<Component Id="Newtonsoft.Json.dll" Guid="5b8acb52-897f-4f73-8469-4a7135bade7e" KeyPath="yes"> |
183 |
<File Id="Newtonsoft.Json.dll" Name="Newtonsoft.Json.dll" Source="$(var.KCOM_TargetDir)Newtonsoft.Json.dll" /> |
184 |
</Component> |
185 |
<Component Id="Svg2Xaml.dll" Guid="f0ecb9d4-2bba-4e3a-bd62-8907d2ae391e" KeyPath="yes"> |
186 |
<File Id="Svg2Xaml.dll" Name="Svg2Xaml.dll" Source="$(var.KCOM_TargetDir)Svg2Xaml.dll" /> |
187 |
</Component> |
188 |
<Component Id="Telerik.Windows.Zip.dll" Guid="f29bffa7-5a8e-4f67-bccc-63648c40b484" KeyPath="yes"> |
189 |
<File Id="Telerik.Windows.Zip.dll" Name="Telerik.Windows.Zip.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Zip.dll" /> |
190 |
</Component> |
191 |
<Component Id="Bytescout.PDFExtractor.OCRExtension.dll" Guid="7d252257-4515-43be-8e00-6c86984f0fe8" KeyPath="yes"> |
192 |
<File Id="Bytescout.PDFExtractor.OCRExtension.dll" Name="Bytescout.PDFExtractor.OCRExtension.dll" Source="$(var.KCOM_TargetDir)Bytescout.PDFExtractor.OCRExtension.dll" /> |
193 |
</Component> |
194 |
<Component Id="Log.config" Guid="3096F516-BA76-4BB0-BA44-BB6D622D0327" KeyPath="yes"> |
195 |
<File Id="Log.config" Name="Log.config" Source="$(var.KCOM_TargetDir)Log.config" /> |
196 |
</Component> |
197 |
<Component Id="MARKUS.ini" Guid="EB25EBF3-F62D-4ACA-BA51-7F718E7DCA44"> |
198 |
<RemoveFile Id="Remove_Fileini" Name="MARKUS.ini" On="install" /> |
199 |
<File Id="MARKUS.ini" Name="MARKUS.ini" Source="$(var.KCOM_TargetDir)MARKUS.ini" KeyPath="yes"/> |
200 |
</Component> |
201 |
</ComponentGroup> |
202 |
</Fragment> |
203 |
<Fragment> |
204 |
<ComponentGroup Id="telerikResourceDE" Directory="TELERIK_RESOURCES_DE"> |
205 |
<Component Id="Telerik.Windows.Controls.resources.dll1" Guid="EB25EBF3-F62D-4ACA-BA51-7F718E7DCA13" KeyPath="yes"> |
206 |
<File Id="Telerik.Windows.Controls.resources.dll11" Name="Telerik.Windows.Controls.resources.dll" Source="$(var.KCOM_TargetDir)de/Telerik.Windows.Controls.resources.dll" /> |
207 |
</Component> |
208 |
</ComponentGroup> |
209 |
<ComponentGroup Id="telerikResourceES" Directory="TELERIK_RESOURCES_ES"> |
210 |
<Component Id="Telerik.Windows.Controls.resources.dll2" Guid="EB25EBF3-F62D-4ACA-BA51-7F718E7DCA23" KeyPath="yes"> |
211 |
<File Id="Telerik.Windows.Controls.resources.dll22" Name="Telerik.Windows.Controls.resources.dll" Source="$(var.KCOM_TargetDir)es/Telerik.Windows.Controls.resources.dll" /> |
212 |
</Component> |
213 |
</ComponentGroup> |
214 |
<ComponentGroup Id="telerikResourceFR" Directory="TELERIK_RESOURCES_FR"> |
215 |
<Component Id="Telerik.Windows.Controls.resources.dll3" Guid="EB25EBF3-F62D-4ACA-BA51-7F718E7DCA33" KeyPath="yes"> |
216 |
<File Id="Telerik.Windows.Controls.resources.dll33" Name="Telerik.Windows.Controls.resources.dll" Source="$(var.KCOM_TargetDir)fr/Telerik.Windows.Controls.resources.dll" /> |
217 |
</Component> |
218 |
</ComponentGroup> |
219 |
<ComponentGroup Id="telerikResourceIT" Directory="TELERIK_RESOURCES_IT"> |
220 |
<Component Id="Telerik.Windows.Controls.resources.dll4" Guid="EB25EBF3-F62D-4ACA-BA51-7F718E7DCA43" KeyPath="yes"> |
221 |
<File Id="Telerik.Windows.Controls.resources.dll44" Name="Telerik.Windows.Controls.resources.dll" Source="$(var.KCOM_TargetDir)it/Telerik.Windows.Controls.resources.dll" /> |
222 |
</Component> |
223 |
</ComponentGroup> |
224 |
<ComponentGroup Id="telerikResourceNL" Directory="TELERIK_RESOURCES_NL"> |
225 |
<Component Id="Telerik.Windows.Controls.resources.dll5" Guid="EB25EBF3-F62D-4ACA-BA51-7F718E7DCA53" KeyPath="yes"> |
226 |
<File Id="Telerik.Windows.Controls.resources.dll55" Name="Telerik.Windows.Controls.resources.dll" Source="$(var.KCOM_TargetDir)nl/Telerik.Windows.Controls.resources.dll" /> |
227 |
</Component> |
228 |
</ComponentGroup> |
229 |
<ComponentGroup Id="telerikResourceTR" Directory="TELERIK_RESOURCES_TR"> |
230 |
<Component Id="Telerik.Windows.Controls.resources.dll6" Guid="EB25EBF3-F62D-4ACA-BA51-7F718E7DCA63" KeyPath="yes"> |
231 |
<File Id="Telerik.Windows.Controls.resources.dll66" Name="Telerik.Windows.Controls.resources.dll" Source="$(var.KCOM_TargetDir)tr/Telerik.Windows.Controls.resources.dll" /> |
232 |
</Component> |
233 |
</ComponentGroup> |
234 |
</Fragment> |
235 |
<Fragment> |
236 |
<ComponentGroup Id="PluginComponents" Directory="PLUGIN_FOLDER"> |
237 |
<Component Id="ConfigParser.dll2" Guid="dfe3ad70-437b-4070-8a51-c7901a10f133" KeyPath="yes"> |
238 |
<File Id="ConfigParser.dll2" Name="ConfigParser.dll" Source="$(var.KCOM_TargetDir)Plugin\ConfigParser.dll" /> |
239 |
</Component> |
240 |
<Component Id="DownloadManager.exe" Guid="9b958da5-e47d-4def-81c4-e10b52f45a62" KeyPath="yes"> |
241 |
<File Id="DownloadManager.exe" Name="DownloadManager.exe" Source="$(var.KCOM_TargetDir)Plugin\DownloadManager.exe" /> |
242 |
</Component> |
243 |
<Component Id="DownloadManager.exe.config" Guid="89df4eaa-bcc2-4311-952f-1d4e76f8051b" KeyPath="yes"> |
244 |
<File Id="DownloadManager.exe.config" Name="DownloadManager.exe.config" Source="$(var.KCOM_TargetDir)Plugin\DownloadManager.exe.config" /> |
245 |
</Component> |
246 |
<Component Id="IIpc.dll2" Guid="5241d4eb-d4b4-44b9-ae04-8b8c79f7cf64" KeyPath="yes"> |
247 |
<File Id="IIpc.dll2" Name="IIpc.dll" Source="$(var.KCOM_TargetDir)Plugin\IIpc.dll" /> |
248 |
</Component> |
249 |
<Component Id="Log.config2" Guid="203FCF06-DF0B-4490-86A9-A15E494B66A6" KeyPath="yes"> |
250 |
<File Id="Log.config2" Name="Log.config" Source="$(var.KCOM_TargetDir)Plugin\Log.config" /> |
251 |
</Component> |
252 |
<Component Id="log4net.dll2" Guid="276BAC09-84D0-4999-B291-69440E041E45" KeyPath="yes"> |
253 |
<File Id="log4net.dll2" Name="log4net.dll" Source="$(var.KCOM_TargetDir)Plugin\log4net.dll" /> |
254 |
</Component> |
255 |
</ComponentGroup> |
256 |
</Fragment> |
257 |
<Fragment> |
258 |
<ComponentGroup Id="RESOURCES_FILES" Directory="RESOURCES_FOLDER"> |
259 |
<Component Id="Resources_Verdana.ttf" Guid="8c5d2c85-3b55-4741-a4b0-db27a1116e4a" KeyPath="yes"> |
260 |
<File Id="Resources_Verdana.ttf" Name="Verdana.ttf" Source="$(var.KCOM_TargetDir)Resources\Verdana.ttf" /> |
261 |
</Component> |
262 |
<Component Id="Resources_NanumGothic.ttf" Guid="203d1af5-f4ef-4b41-a91d-e8bdaff2d061" KeyPath="yes"> |
263 |
<File Id="Resources_NanumGothic.ttf" Name="NanumGothic.ttf" Source="$(var.KCOM_TargetDir)Resources\NanumGothic.ttf" /> |
264 |
</Component> |
265 |
<Component Id="Resources_NanumSquareRoundR.ttf" Guid="4007d19e-69f3-4395-b6ee-6e6ab50b6cdd" KeyPath="yes"> |
266 |
<File Id="Resources_NanumSquareRoundR.ttf" Name="NanumSquareRoundR.ttf" Source="$(var.KCOM_TargetDir)Resources\NanumSquareRoundR.ttf" /> |
267 |
</Component> |
268 |
<Component Id="Resources_NanumMyeongjo_Regular.ttf" Guid="d2e8c729-75cf-471b-b322-13110aa2cb27" KeyPath="yes"> |
269 |
<File Id="Resources_NanumMyeongjo_Regular.ttf" Name="NanumMyeongjo-Regular.ttf" Source="$(var.KCOM_TargetDir)Resources\NanumMyeongjo-Regular.ttf" /> |
270 |
</Component> |
271 |
</ComponentGroup> |
272 |
</Fragment> |
273 |
</Wix> |