개정판 47759f8d
MARKUS.wxs 불필요한 dll 제거
Change-Id: Id3f5fb7354213c345519116599da44d563844b0a
MARKUS.wxs | ||
---|---|---|
1 | 1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 | 2 |
<?define NetFx461MinRelease = 394254 ?> |
3 |
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"><?define KCOM_TargetDir=$(var.KCOM.TargetDir)?><?define IKCOM_TargetDir=$(var.IKCOM.TargetDir)?><?define ZoomAndPan_TargetDir=$(var.ZoomAndPan.TargetDir)?><?define MarkupToPDF_TargetDir=$(var.MarkupToPDF.TargetDir)?><?define KCOMDataModel_TargetDir=$(var.KCOMDataModel.TargetDir)?><?define CommonLib_TargetDir=$(var.CommonLib.TargetDir)?>
|
|
3 |
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"> |
|
4 | 4 |
<Product Id="*" Name="MARKUS" Language="1033" Version="$VERSION" Manufacturer="DOFTECH(C)" UpgradeCode="83FC35CA-6B7D-40C3-9D5F-E8F76097B25C"> |
5 | 5 |
<Package Platform="x64" InstallerVersion="200" Compressed="yes" InstallScope="perMachine" /> |
6 | 6 |
|
7 | 7 |
<MajorUpgrade Schedule="afterInstallInitialize" DowngradeErrorMessage="A newer version of [ProductName] is already installed. Setup will now exit." AllowSameVersionUpgrades="yes" /> |
8 | 8 |
<MediaTemplate EmbedCab="yes" /> |
9 |
|
|
9 |
|
|
10 | 10 |
<WixVariable Id="WixUILicenseRtf" Value="license.rtf" /> |
11 |
<WixVariable Id="WixUIBannerBmp" Value="DOFTECH_LOGO.bmp" />
|
|
12 |
|
|
11 |
<WixVariable Id="WixUIBannerBmp" Value="DOFTECH_LOGO.bmp" /> |
|
12 |
|
|
13 | 13 |
<Feature Id="ProductFeature" Title="MARKUS" Level="1"> |
14 | 14 |
<ComponentGroupRef Id="MARKUS" /> |
15 |
<ComponentGroupRef Id="ProductComponents" /> |
|
16 |
</Feature> |
|
17 |
</Product> |
|
15 |
</Feature> |
|
16 |
</Product> |
|
18 | 17 |
<Fragment> |
19 | 18 |
<Directory Id="TARGETDIR" Name="SourceDir"> |
20 | 19 |
<Directory Id="DesktopFolder" Name="Desktop"> |
21 | 20 |
<Component Id="DesktopShortcut" Guid="DF06024A-95FE-43E2-BDF2-7C686EAF391F" Feature="ProductFeature" Win64="yes"> |
22 |
<RegistryValue Root="HKCU" Key="Software\DOFTECH\MARKUS" Name="installed" Type="integer" Value="1" KeyPath="yes" />
|
|
21 |
<RegistryValue Root="HKCU" Key="Software\DOFTECH\MARKUS" Name="installed" Type="integer" Value="1" KeyPath="yes" /> |
|
23 | 22 |
<RemoveFolder Id="DesktopFolder" On="uninstall" /> |
24 | 23 |
</Component> |
25 | 24 |
</Directory> |
26 |
|
|
25 |
|
|
27 | 26 |
<Directory Id="ProgramFiles64Folder"> |
28 | 27 |
<Directory Id="COMPANYFOLDER" Name="DOFTECH"> |
29 | 28 |
<Directory Id="INSTALLFOLDER" Name="MARKUS" /> |
30 | 29 |
</Directory> |
31 |
</Directory>
|
|
32 |
</Directory>
|
|
30 |
</Directory> |
|
31 |
</Directory> |
|
33 | 32 |
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLFOLDER" /> |
34 | 33 |
<UI> |
35 |
<UIRef Id="WixUI_InstallDir" /> |
|
36 |
<Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="InstallDirDlg" Order="2">1</Publish> |
|
37 |
<Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2">1</Publish> |
|
38 |
<Publish Dialog="ExitDialog" Control="Finish" Event="DoAction" Value="SetupFX">WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed and NOT WIX_IS_NETFRAMEWORK_461_OR_LATER_INSTALLED |
|
39 |
</Publish> |
|
40 |
</UI> |
|
41 |
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOX" Value="1" /> |
|
42 |
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="Install .Net Framework 4.6.1" /> |
|
34 |
<UIRef Id="WixUI_InstallDir" /> |
|
35 |
<Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="InstallDirDlg" Order="2">1</Publish> |
|
36 |
<Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2">1</Publish> |
|
37 |
<Publish Dialog="ExitDialog" Control="Finish" Event="DoAction" Value="SetupFX"> |
|
38 |
WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed and NOT WIX_IS_NETFRAMEWORK_461_OR_LATER_INSTALLED |
|
39 |
</Publish> |
|
40 |
</UI> |
|
41 |
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOX" Value="1" /> |
|
42 |
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="Install .Net Framework 4.6.1" /> |
|
43 | 43 |
<Property Id="WixShellExecTarget" Value="[INSTALLFOLDER]NDP461-KB3102438-Web.exe" /> |
44 |
<Property Id="NETFRAMEWORK40">
|
|
45 |
<RegistrySearch Id="NetFramework40" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v4\Full" Name="Release" Type="raw" />
|
|
46 |
</Property>
|
|
47 |
<Property Id="WIX_IS_NETFRAMEWORK_461_OR_LATER_INSTALLED" Secure="yes" />
|
|
44 |
<Property Id="NETFRAMEWORK40">
|
|
45 |
<RegistrySearch Id="NetFramework40" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v4\Full" Name="Release" Type="raw" />
|
|
46 |
</Property>
|
|
47 |
<Property Id="WIX_IS_NETFRAMEWORK_461_OR_LATER_INSTALLED" Secure="yes" />
|
|
48 | 48 |
<SetProperty Id="WIX_IS_NETFRAMEWORK_461_OR_LATER_INSTALLED" Value="1" After="AppSearch"> |
49 | 49 |
NETFRAMEWORK40 >= "#$(var.NetFx461MinRelease)" |
50 | 50 |
</SetProperty> |
51 |
<CustomAction Id="SetupFX" BinaryKey="WixCA" DllEntry="WixShellExec" Impersonate="yes" />
|
|
51 |
<CustomAction Id="SetupFX" BinaryKey="WixCA" DllEntry="WixShellExec" Impersonate="yes" /> |
|
52 | 52 |
</Fragment> |
53 |
|
|
53 |
|
|
54 | 54 |
<Fragment> |
55 | 55 |
<DirectoryRef Id="TARGETDIR"> |
56 | 56 |
<Component Id="cmp67889FD2219FCD1ECDA0BD9FE906CD7A" Guid="57D045D4-AFC0-4874-8BA9-A1E8B9C348F9" KeyPath="yes"> |
... | ... | |
58 | 58 |
</Component> |
59 | 59 |
</DirectoryRef> |
60 | 60 |
</Fragment> |
61 |
|
|
61 |
|
|
62 | 62 |
<Fragment> |
63 | 63 |
<DirectoryRef Id="TARGETDIR"> |
64 | 64 |
<Component Id="cmpB2A195FD7387054E641ABB044E70AD31" Guid="CA81C92A-E2BA-4E01-B4A0-6B5E5E5A6C63" KeyPath="yes"> |
... | ... | |
68 | 68 |
</Component> |
69 | 69 |
</DirectoryRef> |
70 | 70 |
</Fragment> |
71 |
|
|
71 |
|
|
72 | 72 |
<Fragment> |
73 | 73 |
<DirectoryRef Id="TARGETDIR"> |
74 | 74 |
<Component Id="cmpCA3EA94464F79A1D590AD23EE3921964" Guid="171260E2-66FC-4088-9F1F-3FAEB29250CA" KeyPath="yes"> |
... | ... | |
76 | 76 |
</Component> |
77 | 77 |
</DirectoryRef> |
78 | 78 |
</Fragment> |
79 |
|
|
79 |
|
|
80 | 80 |
<Fragment> |
81 | 81 |
<DirectoryRef Id="TARGETDIR"> |
82 | 82 |
<Component Id="cmpEB1634EB055BA192F2B44B8310392EAD" Guid="D8795ADA-D3EC-4F34-86C3-7D6BE54420EA" KeyPath="yes"> |
... | ... | |
86 | 86 |
</Component> |
87 | 87 |
</DirectoryRef> |
88 | 88 |
</Fragment> |
89 |
|
|
89 |
|
|
90 | 90 |
<Fragment> |
91 | 91 |
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> |
92 | 92 |
<!-- TODO: Remove the comments around this Component element and the ComponentRef below in order to add resources to this installer. --> |
93 | 93 |
<!-- <Component Id="ProductComponent"> --> |
94 |
<!-- TODO: Insert files, registry keys, and other resources here. -->
|
|
94 |
<!-- TODO: Insert files, registry keys, and other resources here. --> |
|
95 | 95 |
<!-- </Component> --> |
96 |
<Component Id="KCOM.exe" Guid="b0595211-c0bf-460e-ae75-45750ec78162"> |
|
97 |
<File Id="KCOM.exe" Name="KCOM.exe" Source="$(var.KCOM_TargetDir)KCOM.exe" /> |
|
96 |
</ComponentGroup> |
|
97 |
</Fragment> |
|
98 |
|
|
99 |
<Fragment> |
|
100 |
<DirectoryRef Id="INSTALLFOLDER"> |
|
101 |
<Directory Id="dir242DC17B8DFC53C13CAF172FC08B730A" Name="de" /> |
|
102 |
<Directory Id="dir9AE38F4F5CB5E565E774521E138F44FD" Name="es" /> |
|
103 |
<Directory Id="dirB55DFDA91FEE7CCCBC65CA7493B75748" Name="fr" /> |
|
104 |
<Directory Id="dir45DE18DD71F3E8DD6BE4A0E2B48778C8" Name="it" /> |
|
105 |
<Directory Id="dirF152986C1E6339E5EF84FD1370841521" Name="ko" /> |
|
106 |
<Directory Id="dir2F3D431E0ED26930C4D37E679C7700A1" Name="nl" /> |
|
107 |
<Directory Id="dir06249C254B8FEA6A37A7C6E4984EF433" Name="tessdata" /> |
|
108 |
<Directory Id="dirE562A4656FE03253EA39D17E8127BA05" Name="tr" /> |
|
109 |
<Directory Id="dirD38EDF1F361B4F099EBE0B9D8968D256" Name="x86" /> |
|
110 |
<Directory Id="dirCFEC9E4F88644EEEA2E2C3669DAF0201" Name="x64" /> |
|
111 |
<Directory Id="CommonAppDataFolder"> |
|
112 |
<Directory Id="MyAppDataFolder" Name="MARKUS"> |
|
113 |
<Component Id="CreateMyAppDataFolder" Guid="697A5A1C-88DB-4D1B-8C7A-614B8A20CD44" Win64="yes"> |
|
114 |
<CreateFolder /> |
|
115 |
</Component> |
|
116 |
</Directory> |
|
117 |
</Directory> |
|
118 |
</DirectoryRef> |
|
119 |
</Fragment> |
|
120 |
<Fragment> |
|
121 |
<ComponentGroup Id="MARKUS"> |
|
122 |
<ComponentRef Id="CreateMyAppDataFolder" /> |
|
123 |
<ComponentRef Id="cmp67889FD2219FCD1ECDA0BD9FE906CD7A" /> |
|
124 |
<ComponentRef Id="cmpB2A195FD7387054E641ABB044E70AD31" /> |
|
125 |
<ComponentRef Id="cmpCA3EA94464F79A1D590AD23EE3921964" /> |
|
126 |
<ComponentRef Id="cmpEB1634EB055BA192F2B44B8310392EAD" /> |
|
127 |
<Component Id="cmpCC866C67D0ACDB0EBE26789908374F45" Directory="INSTALLFOLDER" Guid="F6CF8A7C-00AA-4B45-ADD4-F3DA249D8E64" Win64="yes"> |
|
128 |
<File Id="fil4A00EA3A4A830EE9C257BEC8A7AA9E1A" KeyPath="yes" Source=".\Setup\Bytescout.PDFExtractor.dll" /> |
|
129 |
</Component> |
|
130 |
<Component Id="cmp25D995530710C8C386E94FD45CF48079" Directory="INSTALLFOLDER" Guid="F42D5123-8467-49D5-9B23-B6E2F94A1DB2" Win64="yes"> |
|
131 |
<File Id="fil8FE9B2B8DE4E517EC09CDEB3CD125199" KeyPath="yes" Source=".\Setup\Bytescout.PDFExtractor.OCRExtension.dll" /> |
|
132 |
</Component> |
|
133 |
<Component Id="cmp0BFABD100B4065787B40AA6B05938DF7" Directory="INSTALLFOLDER" Guid="47BCF3AA-F366-4D2F-AC85-4F08EF19297A" Win64="yes"> |
|
134 |
<File Id="fil1D38723F4A034EDE78B6A3B94EFB99F2" KeyPath="yes" Source=".\Setup\EntityFramework.dll" /> |
|
135 |
</Component> |
|
136 |
<Component Id="cmp6CF5CB56E3583D0EBD44D2BB10A62A27" Directory="INSTALLFOLDER" Guid="E0007A37-1DBD-49F4-B24B-D758C1209839" Win64="yes"> |
|
137 |
<File Id="filD3369B082D009ADB833B8DD9F589E45E" KeyPath="yes" Source=".\Setup\EntityFramework.xml" /> |
|
138 |
</Component> |
|
139 |
<Component Id="cmpA415203DE9EF9D193E74C69FE81234D3" Directory="INSTALLFOLDER" Guid="D988FC9F-EEBB-4DA9-BDA2-46B926576509" Win64="yes"> |
|
140 |
<File Id="fil83609071B2AD8A06678837154646C3FB" KeyPath="yes" Source=".\Setup\IKCOM.dll" /> |
|
141 |
</Component> |
|
142 |
<Component Id="cmp1DE0B23F7942D4E47B62522F774F3C76" Directory="INSTALLFOLDER" Guid="A6489D0B-4E42-4F64-B34E-410A0A6A4DCC" Win64="yes"> |
|
143 |
<File Id="filF35DB5A41DFF81B0642F8FCBC3DFB906" KeyPath="yes" Source=".\Setup\itextsharp.dll" /> |
|
144 |
</Component> |
|
145 |
<Component Id="cmp93004A2A70CA6CC5550444DB6A0BB24B" Directory="INSTALLFOLDER" Guid="C100266E-38BC-48D0-A690-F4C02D0E35C5" Win64="yes"> |
|
146 |
<File Id="fil718E22AC4914F03FC39F7293CDC8C672" KeyPath="yes" Source=".\Setup\itextsharp.xml" /> |
|
147 |
</Component> |
|
148 |
<Component Id="cmp9DBCA795D932AB083234E0DAEF7CCCC5" Directory="INSTALLFOLDER" Guid="204BC3E0-DAC5-4467-B490-47964D9A7A25" Win64="yes"> |
|
149 |
<File Id="filDBD3D396B7182945BD91EEFC05F44BB9" KeyPath="yes" Source=".\Setup\KCOM.exe" /> |
|
150 |
</Component> |
|
151 |
<Component Id="cmp8234C30B57CA4022B9BA108719FDF848" Directory="INSTALLFOLDER" Guid="3E2E60BB-3122-40F5-9A76-BDCF3F88D522" Win64="yes"> |
|
152 |
<File Id="fil275D1AADC07745DA9912353B6B5FC53F" KeyPath="yes" Source=".\readme.html" /> |
|
153 |
</Component> |
|
154 |
<Component Id="cmp008EC7C4B15BA79DEC806A9852526EF9" Directory="INSTALLFOLDER" Guid="B4829BEF-7376-4039-8E1D-8A46D257F4AF" Win64="yes"> |
|
155 |
<File Id="filD7A7D725F3C20E26B1A149EAABD9323C" KeyPath="yes" Source=".\Setup\KCOM.exe.config" /> |
|
156 |
</Component> |
|
157 |
<Component Id="cmp7752819596C3476DB4E5F7A60F8FE644" Directory="INSTALLFOLDER" Guid="04E50F42-40E2-4DAE-A14E-6C966A6D1813" Win64="yes"> |
|
158 |
<File Id="filFF54F68C528A4A959268781594F5D596" KeyPath="yes" Source=".\Setup\SmartUpdate.exe" /> |
|
159 |
</Component> |
|
160 |
<Component Id="cmp969D915ED42B411BA95424C403A6A841" Directory="INSTALLFOLDER" Guid="7EA8712F-DF55-4892-BFDF-AEAE4BB24E25" Win64="yes"> |
|
161 |
<File Id="filDF23C3351DE043E29012E797F541D0F4" KeyPath="yes" Source=".\Setup\SmartUpdate.exe.config" /> |
|
162 |
</Component> |
|
163 |
<Component Id="cmpD3A6FA6C7B0D4A7F8464F61659F02115" Directory="INSTALLFOLDER" Guid="123D40A1-7FF9-4CFB-9837-E1A00E2A7A70" Win64="yes"> |
|
164 |
<File Id="fil9C8C2AB2B1E142458FBD1EB991F289E1" KeyPath="yes" Source=".\packages\potrace.exe" /> |
|
165 |
</Component> |
|
166 |
<Component Id="cmp40B0E7C91C025AEEEF1F0DEC51A66549" Directory="INSTALLFOLDER" Guid="69d5a0ff-23db-4044-b874-1f8078446e24" Win64="yes"> |
|
167 |
<File Id="filF60CE67197837623CD57BE23CB07368E" KeyPath="yes" Source=".\Setup\CommonLib.dll" /> |
|
168 |
</Component> |
|
169 |
<Component Id="cmp40B0E7C91C025AAEEF1F0DEC51A66549" Directory="INSTALLFOLDER" Guid="471A4642-5A10-49EB-A77A-CF5C821BA1F1" Win64="yes"> |
|
170 |
<File Id="filF60CE67197837613CD57BE23CB07368E" KeyPath="yes" Source=".\Setup\KCOMDataModel.dll" /> |
|
98 | 171 |
</Component> |
99 |
<Component Id="KCOM.exe.config" Guid="1cd811b1-3b9f-4c04-ba29-e34062731459">
|
|
100 |
<File Id="KCOM.exe.config" Name="KCOM.exe.config" Source="$(var.KCOM_TargetDir)KCOM.exe.config" />
|
|
172 |
<Component Id="cmpEE8E531D52E746388211D454A7B652CD" Directory="INSTALLFOLDER" Guid="BF70CAD3-28DF-44F2-95DC-F9ECDFA33BC9" Win64="yes">
|
|
173 |
<File Id="filF33A63AB801D7E78849A4330E53EBD7B" KeyPath="yes" Source=".\Setup\KCOMDataModel.dll.config" />
|
|
101 | 174 |
</Component> |
102 |
<Component Id="IKCOM.dll" Guid="c3b6b495-878b-447a-95af-2323215dd19f">
|
|
103 |
<File Id="IKCOM.dll" Name="IKCOM.dll" Source="$(var.IKCOM_TargetDir)IKCOM.dll" />
|
|
175 |
<Component Id="cmpFE0047A5420B60BC9070B49ED04A3DF7" Directory="INSTALLFOLDER" Guid="92A19E1A-AD00-40EE-9194-1140097E3D0D" Win64="yes">
|
|
176 |
<File Id="filDB2B5EE0EF352042DCB528551CFF336A" KeyPath="yes" Source=".\Setup\MarkupToPDF.dll" />
|
|
104 | 177 |
</Component> |
105 |
<Component Id="Telerik.Windows.Controls.Docking.dll" Guid="2687bc55-ece8-4f03-9ad6-cd29277df9f2">
|
|
106 |
<File Id="Telerik.Windows.Controls.Docking.dll" Name="Telerik.Windows.Controls.Docking.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Controls.Docking.dll" />
|
|
178 |
<Component Id="cmpBF387E9588F2B8473B629AAB925D2239" Directory="INSTALLFOLDER" Guid="D65A7FBC-F1DE-4031-97A3-B99E215B3C70" Win64="yes">
|
|
179 |
<File Id="fil3BBE868726AE8A4E2066B45DD738F0E3" KeyPath="yes" Source=".\Setup\MarkupToPDF.dll.config" />
|
|
107 | 180 |
</Component> |
108 |
<Component Id="Telerik.Windows.Controls.dll" Guid="6f9c5701-2074-426a-aefe-916d89ef2711">
|
|
109 |
<File Id="Telerik.Windows.Controls.dll" Name="Telerik.Windows.Controls.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Controls.dll" />
|
|
181 |
<Component Id="cmp2B9822AB4FE29C97D7C74389B67E3A7B" Directory="INSTALLFOLDER" Guid="EA07BB02-ED13-4A69-93E0-B4CE0833B27D" Win64="yes">
|
|
182 |
<File Id="filD10FADEA0033B1FF9119AD86377B6DFB" KeyPath="yes" Source=".\Setup\Microsoft.AspNet.SignalR.Client.dll" />
|
|
110 | 183 |
</Component> |
111 |
<Component Id="Telerik.Windows.Controls.RibbonView.dll" Guid="7cf03108-e1db-4b29-bfa3-28f241b33832">
|
|
112 |
<File Id="Telerik.Windows.Controls.RibbonView.dll" Name="Telerik.Windows.Controls.RibbonView.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Controls.RibbonView.dll" />
|
|
184 |
<Component Id="cmp601B3BD81B5071744666A47E821CCDD1" Directory="INSTALLFOLDER" Guid="3FD119D8-FE0C-4C65-824E-107E25AF8B00" Win64="yes">
|
|
185 |
<File Id="fil4F8D22903F1C540154297E75E8066C41" KeyPath="yes" Source=".\Setup\Microsoft.AspNet.SignalR.Client.xml" />
|
|
113 | 186 |
</Component> |
114 |
<Component Id="Telerik.Windows.Controls.GridView.dll" Guid="647749cb-0bb9-4292-812c-fcac77d3851c">
|
|
115 |
<File Id="Telerik.Windows.Controls.GridView.dll" Name="Telerik.Windows.Controls.GridView.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Controls.GridView.dll" />
|
|
187 |
<Component Id="cmp227B2F253D6CB8A27087F47F70A62459" Directory="INSTALLFOLDER" Guid="D6BC83C1-C841-4BF6-89FF-5677B1AE8B09" Win64="yes">
|
|
188 |
<File Id="filB5261509ADB8E7D2D70A1C67DCA37876" KeyPath="yes" Source=".\Setup\Microsoft.Expression.Interactions.dll" />
|
|
116 | 189 |
</Component> |
117 |
<Component Id="Telerik.Windows.Data.dll" Guid="034cc86c-1cdd-4e50-a263-be9f03fb538d">
|
|
118 |
<File Id="Telerik.Windows.Data.dll" Name="Telerik.Windows.Data.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Data.dll" />
|
|
190 |
<Component Id="cmpC2107C307F76E546D2A4A5EAD4DA36D7" Directory="INSTALLFOLDER" Guid="D6643927-25B3-4ED4-B890-84CE3D9EDB07" Win64="yes">
|
|
191 |
<File Id="filBA11534FF762BA52842645F853FD1935" KeyPath="yes" Source=".\Setup\Microsoft.Expression.Interactions.xml" />
|
|
119 | 192 |
</Component> |
120 |
<Component Id="Telerik.Windows.Controls.Input.dll" Guid="40c1a2b2-aaa1-4b85-a5cb-bff05ccc05fa"> |
|
121 |
<File Id="Telerik.Windows.Controls.Input.dll" Name="Telerik.Windows.Controls.Input.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Controls.Input.dll" /> |
|
193 |
|
|
194 |
|
|
195 |
|
|
196 |
|
|
197 |
|
|
198 |
|
|
199 |
<Component Id="cmpBC4FC00A26E7D32479D42D3411317FC5" Directory="INSTALLFOLDER" Guid="66675814-6C27-4B75-837F-12218179C428" Win64="yes"> |
|
200 |
<File Id="fil90A8AAD9FC612906D405476D61CEA3F4" KeyPath="yes" Source=".\Setup\Newtonsoft.Json.dll" /> |
|
201 |
</Component> |
|
202 |
<Component Id="cmp125C379E185231EFADA4CB4301BD0A9E" Directory="INSTALLFOLDER" Guid="876DA7E8-ED43-4C22-B6E9-9FB423B79821" Win64="yes"> |
|
203 |
<File Id="fil3A2F44A7730E98D18E0948B3261DFABD" KeyPath="yes" Source=".\Setup\Newtonsoft.Json.xml" /> |
|
204 |
</Component> |
|
205 |
|
|
206 |
|
|
207 |
|
|
208 |
|
|
209 |
<Component Id="cmp11C8820ECB0CB2D86F64F2996509DCA7" Directory="INSTALLFOLDER" Guid="10446EB8-93B1-499B-B740-48B67E18C8EE" Win64="yes"> |
|
210 |
<File Id="fil634B1A249B0D62C150EFB286C2C91A46" KeyPath="yes" Source=".\Setup\Telerik.Windows.Controls.dll" /> |
|
211 |
</Component> |
|
212 |
<Component Id="cmpAF56AE510EB3BDF893C5B06C6ABA7BDD" Directory="INSTALLFOLDER" Guid="31517AA7-FF5B-47AF-A585-D23EFD75C1F6" Win64="yes"> |
|
213 |
<File Id="filF728404062A49EA67C9D8FE3BBE0E898" KeyPath="yes" Source=".\Setup\Telerik.Windows.Controls.Docking.dll" /> |
|
214 |
</Component> |
|
215 |
<Component Id="cmp21BF690CF842B5194CB2028F73189055" Directory="INSTALLFOLDER" Guid="2D9F9627-560D-405C-B008-841034AD2A49" Win64="yes"> |
|
216 |
<File Id="fil266D83FF68961E612507118F431810F7" KeyPath="yes" Source=".\Setup\Telerik.Windows.Controls.GridView.dll" /> |
|
217 |
</Component> |
|
218 |
<Component Id="cmp4CBD77EFA337CFC3401C374F65E29BAA" Directory="INSTALLFOLDER" Guid="BE75CF50-CAA4-47B1-8D37-0D3C18912AF5" Win64="yes"> |
|
219 |
<File Id="fil3DF9298853D1D63F2B5664B24979D0E0" KeyPath="yes" Source=".\Setup\Telerik.Windows.Controls.Input.dll" /> |
|
220 |
</Component> |
|
221 |
<Component Id="cmpBBA2EA4FDA3C5AA2693FAC9589038964" Directory="INSTALLFOLDER" Guid="6C3C743A-B83B-4B8E-8454-A03C91C7F789" Win64="yes"> |
|
222 |
<File Id="filDC3BAC1BF9BBD0564415BD06BEEE0135" KeyPath="yes" Source=".\Setup\Telerik.Windows.Controls.Navigation.dll" /> |
|
223 |
</Component> |
|
224 |
<Component Id="cmpBF5C0D6200AF06B163C4D15C43D1664D" Directory="INSTALLFOLDER" Guid="F84B084E-331D-4BE1-A479-0A9FE0515B86" Win64="yes"> |
|
225 |
<File Id="filF79E0D2ADE14C7A2E11C65C296BC40BF" KeyPath="yes" Source=".\Setup\Telerik.Windows.Controls.RibbonView.dll" /> |
|
122 | 226 |
</Component> |
123 |
<Component Id="Telerik.Windows.Controls.Navigation.dll" Guid="1437bc90-b6a5-4800-8bee-3cd706bcfb91">
|
|
124 |
<File Id="Telerik.Windows.Controls.Navigation.dll" Name="Telerik.Windows.Controls.Navigation.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Controls.Navigation.dll" />
|
|
227 |
<Component Id="cmp92AE6AD1C56764FC0C2F256343677A9F" Directory="INSTALLFOLDER" Guid="C727A92F-1EB1-4975-9546-19EEB5B859DC" Win64="yes">
|
|
228 |
<File Id="filD747EE49E2E0D8A06187AA226FF1C561" KeyPath="yes" Source=".\Setup\Telerik.Windows.Data.dll" />
|
|
125 | 229 |
</Component> |
126 |
<Component Id="System.Windows.Interactivity.dll" Guid="8ce5800c-47fa-45ea-bc2c-a85225dbfaeb">
|
|
127 |
<File Id="System.Windows.Interactivity.dll" Name="System.Windows.Interactivity.dll" Source="$(var.KCOM_TargetDir)System.Windows.Interactivity.dll" />
|
|
230 |
<Component Id="cmpCD235197A0E4A6BCD3DEB46A5728EB4F" Directory="INSTALLFOLDER" Guid="2374F5C7-960C-427B-A0F1-800E4B830DBB" Win64="yes">
|
|
231 |
<File Id="fil0E4AE6C9555A11AC8411AE8BE6530CDA" KeyPath="yes" Source=".\Setup\Telerik.Windows.Themes.VisualStudio2013.dll" />
|
|
128 | 232 |
</Component> |
129 |
<Component Id="ZoomAndPan.dll" Guid="2c4aacdc-2a20-468f-8cb1-77815404d7ef">
|
|
130 |
<File Id="ZoomAndPan.dll" Name="ZoomAndPan.dll" Source="$(var.ZoomAndPan_TargetDir)ZoomAndPan.dll" />
|
|
233 |
<Component Id="cmp7F07F6231918203727082BB6A28CC75F" Directory="INSTALLFOLDER" Guid="22FE42A1-8651-460D-B867-67E1CC2FC670" Win64="yes">
|
|
234 |
<File Id="fil3E19A0F06927704B530947F360809AD8" KeyPath="yes" Source=".\Setup\Telerik.Windows.Zip.dll" />
|
|
131 | 235 |
</Component> |
132 |
<Component Id="ToggleSwitch.dll" Guid="5d10d9aa-267a-4cba-a308-a51b60791961">
|
|
133 |
<File Id="ToggleSwitch.dll" Name="ToggleSwitch.dll" Source="$(var.KCOM_TargetDir)ToggleSwitch.dll" />
|
|
236 |
<Component Id="cmpFF91FE36548D6FA9C8D0DC80206BE1EF" Directory="INSTALLFOLDER" Guid="C478F137-DD9A-4628-A07B-8CAFF92BA681" Win64="yes">
|
|
237 |
<File Id="fil898D8F5BF92067A65BDD539092A9A061" KeyPath="yes" Source=".\Setup\Telerik.Windows.Zip.xml" />
|
|
134 | 238 |
</Component> |
135 |
<Component Id="MarkupToPDF.dll" Guid="ec831bc9-d9b8-4303-95a2-1b80585b119d">
|
|
136 |
<File Id="MarkupToPDF.dll" Name="MarkupToPDF.dll" Source="$(var.MarkupToPDF_TargetDir)MarkupToPDF.dll" />
|
|
239 |
<Component Id="cmp0514F1BB70C8ECCFF44A0A355A53441B" Directory="INSTALLFOLDER" Guid="F82992EC-E1EA-4C1A-92D7-388D207D0EFB" Win64="yes">
|
|
240 |
<File Id="fil9F98448866AC2226C494BD9810AF69EF" KeyPath="yes" Source=".\Setup\ToggleSwitch.dll" />
|
|
137 | 241 |
</Component> |
138 |
<Component Id="Microsoft.Expression.Interactions.dll" Guid="65226f39-1026-4b12-88e4-cfb77abd960d">
|
|
139 |
<File Id="Microsoft.Expression.Interactions.dll" Name="Microsoft.Expression.Interactions.dll" Source="$(var.KCOM_TargetDir)Microsoft.Expression.Interactions.dll" />
|
|
242 |
<Component Id="cmp2B79D8B21752ECF6DF82930454768404" Directory="INSTALLFOLDER" Guid="4DB19C60-1622-41C3-B973-AB1D58693C41" Win64="yes">
|
|
243 |
<File Id="filC5BEFD2EAA8948BAA5384BF4A966EDA5" KeyPath="yes" Source=".\Setup\ZoomAndPan.dll" />
|
|
140 | 244 |
</Component> |
141 |
<Component Id="log4net.dll" Guid="f3bb347a-7166-4c73-9599-c9b958ca4331">
|
|
142 |
<File Id="log4net.dll" Name="log4net.dll" Source="$(var.KCOM_TargetDir)log4net.dll" />
|
|
245 |
<Component Id="cmp8FBF2BDB3D3B55D95D738AE16D776E91" Directory="dir242DC17B8DFC53C13CAF172FC08B730A" Guid="067FD2A4-9164-4898-949A-7EF1F27BD840" Win64="yes">
|
|
246 |
<File Id="filCE89910B4AD60B36118F14BA5A049859" KeyPath="yes" Source=".\Setup\de\Telerik.Windows.Controls.resources.dll" />
|
|
143 | 247 |
</Component> |
144 |
<Component Id="KCOMDataModel.dll" Guid="5decb200-42fe-4214-a091-e263bb765158">
|
|
145 |
<File Id="KCOMDataModel.dll" Name="KCOMDataModel.dll" Source="$(var.KCOMDataModel_TargetDir)KCOMDataModel.dll" />
|
|
248 |
<Component Id="cmp2A3F3E6BA2490D3202F1332C9EC174FB" Directory="dir9AE38F4F5CB5E565E774521E138F44FD" Guid="3E60D941-DBE2-472F-BB71-544F5CF588B4" Win64="yes">
|
|
249 |
<File Id="fil5D75AD906A44966046A97C57C4F18833" KeyPath="yes" Source=".\Setup\es\Telerik.Windows.Controls.resources.dll" />
|
|
146 | 250 |
</Component> |
147 |
<Component Id="itextsharp.dll" Guid="f9a333ec-c38a-4bdb-a234-ae7bd4d42789">
|
|
148 |
<File Id="itextsharp.dll" Name="itextsharp.dll" Source="$(var.KCOM_TargetDir)itextsharp.dll" />
|
|
251 |
<Component Id="cmp018DDF4A0C68B7CD2430401924062DB2" Directory="dirB55DFDA91FEE7CCCBC65CA7493B75748" Guid="7D79A805-D7B9-4E0F-885D-356CBB0AE28F" Win64="yes">
|
|
252 |
<File Id="filABD02679788FB3CF55E5561863627EB1" KeyPath="yes" Source=".\Setup\fr\Telerik.Windows.Controls.resources.dll" />
|
|
149 | 253 |
</Component> |
150 |
<Component Id="Microsoft.AspNet.SignalR.Client.dll" Guid="7fe21c3d-2fda-4895-b2bf-a98ef4f4cad0">
|
|
151 |
<File Id="Microsoft.AspNet.SignalR.Client.dll" Name="Microsoft.AspNet.SignalR.Client.dll" Source="$(var.KCOM_TargetDir)Microsoft.AspNet.SignalR.Client.dll" />
|
|
254 |
<Component Id="cmp7C8985562649003E18B234BE73E4B656" Directory="dir45DE18DD71F3E8DD6BE4A0E2B48778C8" Guid="F7BE7736-783F-438D-931E-D4B06DD4D0AD" Win64="yes">
|
|
255 |
<File Id="fil2AB10F4CAB8B23469B3F044F6FA6C8FF" KeyPath="yes" Source=".\Setup\it\Telerik.Windows.Controls.resources.dll" />
|
|
152 | 256 |
</Component> |
153 |
<Component Id="Bytescout.PDFExtractor.dll" Guid="bcfcab7d-ea29-47a4-80bb-e74c6b515865">
|
|
154 |
<File Id="Bytescout.PDFExtractor.dll" Name="Bytescout.PDFExtractor.dll" Source="$(var.KCOM_TargetDir)Bytescout.PDFExtractor.dll" />
|
|
257 |
<Component Id="cmpF3CF8EE111D7CD9F53555A41C71F46AB" Directory="dirF152986C1E6339E5EF84FD1370841521" Guid="A503D6F2-C5CD-4AF4-8880-792E54E44464" Win64="yes">
|
|
258 |
<File Id="fil9DF62BA15697484B5ADD8F6342B72577" KeyPath="yes" Source=".\Setup\ko\EntityFramework.resources.dll" />
|
|
155 | 259 |
</Component> |
156 |
<Component Id="Newtonsoft.Json.dll" Guid="27dd3ddf-6f0a-4dc1-a454-d5ed84237a7e">
|
|
157 |
<File Id="Newtonsoft.Json.dll" Name="Newtonsoft.Json.dll" Source="$(var.KCOM_TargetDir)Newtonsoft.Json.dll" />
|
|
260 |
<Component Id="cmp9D362277309EED1B413C0EC318CDF8D0" Directory="dir2F3D431E0ED26930C4D37E679C7700A1" Guid="447C0CE9-D606-4557-8B59-66182CBD5E67" Win64="yes">
|
|
261 |
<File Id="fil0A3BECBAF1358C0A33D415890487998A" KeyPath="yes" Source=".\Setup\nl\Telerik.Windows.Controls.resources.dll" />
|
|
158 | 262 |
</Component> |
159 |
<Component Id="CommonLib.dll" Guid="2c0964f5-0873-4745-8a2e-241fb38aed10"> |
|
160 |
<File Id="CommonLib.dll" Name="CommonLib.dll" Source="$(var.CommonLib_TargetDir)CommonLib.dll" /> |
|
263 |
<Component Id="cmp0CA869F93E8C96460E9DEDDBA02904A3" Directory="dirE562A4656FE03253EA39D17E8127BA05" Guid="EFC4F972-411E-42DB-8F9E-AF5AA092C2EB" Win64="yes"> |
|
264 |
<File Id="filE14203CE7880C200F8EBF2F86DD14C45" KeyPath="yes" Source=".\Setup\tr\Telerik.Windows.Controls.resources.dll" /> |
|
265 |
</Component> |
|
266 |
<Component Id="cmpB972CF14E2FE46EF4C27DF8E2A8D8148" Directory="dir06249C254B8FEA6A37A7C6E4984EF433" Guid="DD3F9F2D-37DC-4FB1-BA8A-BE7600D0F681" Win64="yes"> |
|
267 |
<File Id="fil6A0332515469DC460F8463EC6A6624A9" KeyPath="yes" Source=".\Setup\tessdata\deu.traineddata" /> |
|
268 |
</Component> |
|
269 |
<Component Id="cmp92673DCD3A790F0AE44C8C35A1E2CE7C" Directory="dir06249C254B8FEA6A37A7C6E4984EF433" Guid="97CA2A94-A16D-4160-92CC-9917011E793F" Win64="yes"> |
|
270 |
<File Id="fil8A735A93EC1DA3907F32FD0458422B92" KeyPath="yes" Source=".\Setup\tessdata\eng.traineddata" /> |
|
271 |
</Component> |
|
272 |
<Component Id="cmp9971145325DD7CCCE8C465A817FDC26A" Directory="dir06249C254B8FEA6A37A7C6E4984EF433" Guid="13D63C44-13B4-4FDA-BBE5-811D4086E0B0" Win64="yes"> |
|
273 |
<File Id="filE90E86FD8DB35F24AAC22256077E0AA0" KeyPath="yes" Source=".\Setup\tessdata\fra.traineddata" /> |
|
274 |
</Component> |
|
275 |
<Component Id="cmpE2CD3D3C1E99C37D8F73459EBEFD3BA4" Directory="dir06249C254B8FEA6A37A7C6E4984EF433" Guid="25B83C3D-915F-40D3-98E9-50F395072392" Win64="yes"> |
|
276 |
<File Id="filFA0821084DD0DB0573FAFB7DB367CDF2" KeyPath="yes" Source=".\Setup\tessdata\spa.traineddata" /> |
|
277 |
</Component> |
|
278 |
<Component Id="cmp4AAAF23576449894C66F0CD0A34DD81E" Directory="INSTALLFOLDER" Guid="0D279D98-F271-4E6A-BA5E-86619CAEFE4D" Win64="yes"> |
|
279 |
<File Id="filBF3009E800CE3B36AC8E63585FE2117F" KeyPath="yes" Source=".\Setup\Svg2Xaml.dll" /> |
|
280 |
</Component> |
|
281 |
<Component Id="cmp096B4B06A37EF2531C9A1122D763E919" Directory="INSTALLFOLDER" Guid="02814047-5201-4CD3-A63B-43E4051BD1F6" Win64="yes"> |
|
282 |
<File Id="fil56681951F589A14F0B808D7D4F936C29" KeyPath="yes" Source=".\Setup\Svg2Xaml.xml" /> |
|
283 |
</Component> |
|
284 |
<Component Id="cmpF5FBD3938B844D06B2BB93F3C8E9735D" Directory="INSTALLFOLDER" Guid="972720D3-9F4E-4115-A867-D428DFFE9C00" Win64="yes"> |
|
285 |
<File Id="fil05D02B4AA1454B0BAAB715EC9DC4EA20" KeyPath="yes" Source=".\Setup\log4net.dll" /> |
|
286 |
</Component> |
|
287 |
<Component Id="cmp37D5E19B77924243BEC481CD72D30220" Directory="INSTALLFOLDER" Guid="FA4A1FA4-2393-4D7D-8C07-2012A751E1F5" Win64="yes"> |
|
288 |
<File Id="fil075399F2785342059E7C4C2B7872DA85" KeyPath="yes" Source=".\Setup\log4net.xml" /> |
|
289 |
</Component> |
|
290 |
|
|
291 |
|
|
292 |
|
|
293 |
|
|
294 |
|
|
295 |
|
|
296 |
|
|
297 |
<Component Id="cmpA7D3E561E3C645CAA87BCDA2052CE853" Directory="INSTALLFOLDER" Guid="2DB66F4F-9E7C-4050-BD2A-D9B825C660C0" Win64="yes"> |
|
298 |
<File Id="filCB33C867CDE342B6B09DB17464950739" KeyPath="yes" Source=".\Setup\System.Windows.Interactivity.dll" /> |
|
161 | 299 |
</Component> |
162 |
<Component Id="Svg2Xaml.dll" Guid="628f8174-1a53-4195-a00f-20f73b54459a">
|
|
163 |
<File Id="Svg2Xaml.dll" Name="Svg2Xaml.dll" Source="$(var.KCOM_TargetDir)Svg2Xaml.dll" />
|
|
300 |
<Component Id="cmpA8E411F92BD54821B9A3CEF8E01BBE63" Directory="MyAppDataFolder" Guid="6BF0D3C5-0684-4E7D-BC53-4CE092A48FFE" Win64="yes">
|
|
301 |
<File Id="fil49E6FDC6BDFC49A5AB05A71FB2D3A5AE" KeyPath="yes" Source=".\KCOM\MARKUS.ini" />
|
|
164 | 302 |
</Component> |
165 |
<Component Id="Telerik.Windows.Zip.dll" Guid="a6fad489-eddc-40d4-8380-f21f1eddc036">
|
|
166 |
<File Id="Telerik.Windows.Zip.dll" Name="Telerik.Windows.Zip.dll" Source="$(var.KCOM_TargetDir)Telerik.Windows.Zip.dll" />
|
|
303 |
<Component Id="cmpA7D3E561E3C645CAA87BCDA2052CE853" Directory="INSTALLFOLDER" Guid="2DB66F4F-9E7C-4050-BD2A-D9B825C660C0" Win64="yes">
|
|
304 |
<File Id="filCB33C867CDE342B6B09DB17464950739" KeyPath="yes" Source=".\Setup\Log.config" />
|
|
167 | 305 |
</Component> |
168 |
<Component Id="Bytescout.PDFExtractor.OCRExtension.dll" Guid="9d6e8e27-0ffb-410e-8420-1119d90ce8d5">
|
|
169 |
<File Id="Bytescout.PDFExtractor.OCRExtension.dll" Name="Bytescout.PDFExtractor.OCRExtension.dll" Source="$(var.KCOM_TargetDir)Bytescout.PDFExtractor.OCRExtension.dll" />
|
|
306 |
<Component Id="cmp92F6718F031E4AD2810155492929EE55" Directory="INSTALLFOLDER" Guid="CC6B1FD1-0587-4C56-B2F0-437BFA51B673" Win64="yes">
|
|
307 |
<File Id="fil32BE8515827243CE87971B56055C66F1" KeyPath="yes" Source=".\packages\NDP461-KB3102438-Web.exe" />
|
|
170 | 308 |
</Component> |
171 | 309 |
</ComponentGroup> |
172 | 310 |
</Fragment> |
173 |
|
|
174 |
<Fragment> |
|
175 |
<DirectoryRef Id="INSTALLFOLDER"> |
|
176 |
<Directory Id="dir242DC17B8DFC53C13CAF172FC08B730A" Name="de" /> |
|
177 |
<Directory Id="dir9AE38F4F5CB5E565E774521E138F44FD" Name="es" /> |
|
178 |
<Directory Id="dirB55DFDA91FEE7CCCBC65CA7493B75748" Name="fr" /> |
|
179 |
<Directory Id="dir45DE18DD71F3E8DD6BE4A0E2B48778C8" Name="it" /> |
|
180 |
<Directory Id="dirF152986C1E6339E5EF84FD1370841521" Name="ko" /> |
|
181 |
<Directory Id="dir2F3D431E0ED26930C4D37E679C7700A1" Name="nl" /> |
|
182 |
<Directory Id="dir06249C254B8FEA6A37A7C6E4984EF433" Name="tessdata" /> |
|
183 |
<Directory Id="dirE562A4656FE03253EA39D17E8127BA05" Name="tr" /> |
|
184 |
<Directory Id="dirD38EDF1F361B4F099EBE0B9D8968D256" Name="x86" /> |
|
185 |
<Directory Id="dirCFEC9E4F88644EEEA2E2C3669DAF0201" Name="x64" /> |
|
186 |
<Directory Id="CommonAppDataFolder"> |
|
187 |
<Directory Id="MyAppDataFolder" Name="MARKUS"> |
|
188 |
<Component Id="CreateMyAppDataFolder" Guid="697A5A1C-88DB-4D1B-8C7A-614B8A20CD44" Win64="yes"> |
|
189 |
<CreateFolder /> |
|
190 |
</Component> |
|
191 |
</Directory> |
|
192 |
</Directory> |
|
193 |
</DirectoryRef> |
|
194 |
</Fragment> |
|
195 |
<Fragment> |
|
196 |
<ComponentGroup Id="MARKUS"> |
|
197 |
<ComponentRef Id="CreateMyAppDataFolder" /> |
|
198 |
<ComponentRef Id="cmp67889FD2219FCD1ECDA0BD9FE906CD7A" /> |
|
199 |
<ComponentRef Id="cmpB2A195FD7387054E641ABB044E70AD31" /> |
|
200 |
<ComponentRef Id="cmpCA3EA94464F79A1D590AD23EE3921964" /> |
|
201 |
<ComponentRef Id="cmpEB1634EB055BA192F2B44B8310392EAD" /> |
|
202 |
|
|
203 |
|
|
204 |
|
|
205 |
|
|
206 |
|
|
207 |
|
|
208 |
|
|
209 |
|
|
210 |
<Component Id="cmp8234C30B57CA4022B9BA108719FDF848" Directory="INSTALLFOLDER" Guid="3E2E60BB-3122-40F5-9A76-BDCF3F88D522" Win64="yes"> |
|
211 |
<File Id="fil275D1AADC07745DA9912353B6B5FC53F" KeyPath="yes" Source=".\readme.html" /> |
|
212 |
</Component> |
|
213 |
|
|
214 |
|
|
215 |
|
|
216 |
<Component Id="cmpD3A6FA6C7B0D4A7F8464F61659F02115" Directory="INSTALLFOLDER" Guid="123D40A1-7FF9-4CFB-9837-E1A00E2A7A70" Win64="yes"> |
|
217 |
<File Id="fil9C8C2AB2B1E142458FBD1EB991F289E1" KeyPath="yes" Source=".\packages\potrace.exe" /> |
|
218 |
</Component> |
|
219 |
|
|
220 |
|
|
221 |
|
|
222 |
|
|
223 |
|
|
224 |
|
|
225 |
|
|
226 |
|
|
227 |
|
|
228 |
|
|
229 |
|
|
230 |
|
|
231 |
|
|
232 |
|
|
233 |
|
|
234 |
|
|
235 |
|
|
236 |
|
|
237 |
|
|
238 |
|
|
239 |
|
|
240 |
|
|
241 |
|
|
242 |
|
|
243 |
|
|
244 |
|
|
245 |
|
|
246 |
|
|
247 |
|
|
248 |
|
|
249 |
|
|
250 |
|
|
251 |
|
|
252 |
|
|
253 |
|
|
254 |
|
|
255 |
|
|
256 |
|
|
257 |
|
|
258 |
|
|
259 |
<Component Id="cmpA8E411F92BD54821B9A3CEF8E01BBE63" Directory="MyAppDataFolder" Guid="6BF0D3C5-0684-4E7D-BC53-4CE092A48FFE" Win64="yes"> |
|
260 |
<File Id="fil49E6FDC6BDFC49A5AB05A71FB2D3A5AE" KeyPath="yes" Source=".\KCOM\MARKUS.ini" /> |
|
261 |
</Component> |
|
262 |
<Component Id="cmp92F6718F031E4AD2810155492929EE55" Directory="INSTALLFOLDER" Guid="CC6B1FD1-0587-4C56-B2F0-437BFA51B673" Win64="yes"> |
|
263 |
<File Id="fil32BE8515827243CE87971B56055C66F1" KeyPath="yes" Source=".\packages\NDP461-KB3102438-Web.exe" /> |
|
264 |
</Component> |
|
265 |
</ComponentGroup> |
|
266 |
</Fragment> |
|
267 |
</Wix> |
|
311 |
</Wix> |
내보내기 Unified diff