markus / MARKUS.wxs @ 4cc986f1
이력 | 보기 | 이력해설 | 다운로드 (55.7 KB)
1 |
<?xml version="1.0" encoding="UTF-8"?> |
---|---|
2 |
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"> |
3 |
<Product Id="*" Name="MARKUS" Language="1033" Version="1.0.0.0" Manufacturer="DOFTECH(C)" UpgradeCode="83FC35CA-6B7D-40C3-9D5F-E8F76097B25C"> |
4 |
<Package Platform="x64" InstallerVersion="200" Compressed="yes" InstallScope="perMachine" /> |
5 |
|
6 |
<MajorUpgrade Schedule="afterInstallInitialize" DowngradeErrorMessage="A newer version of [ProductName] is already installed. Setup will now exit." AllowSameVersionUpgrades="yes"/> |
7 |
<MediaTemplate EmbedCab="yes"/> |
8 |
|
9 |
<WixVariable Id="WixUILicenseRtf" Value="license.rtf" /> |
10 |
<WixVariable Id="WixUIBannerBmp" Value="DOFTECH_LOGO.bmp" /> |
11 |
|
12 |
<Feature Id="ProductFeature" Title="MARKUS" Level="1"> |
13 |
<ComponentGroupRef Id="MARKUS" /> |
14 |
</Feature> |
15 |
</Product> |
16 |
|
17 |
<Fragment> |
18 |
<Directory Id="TARGETDIR" Name="SourceDir"> |
19 |
<Directory Id="DesktopFolder" Name="Desktop"> |
20 |
<Component Id="RegistryEntries" Guid="2bba9217-fcb9-4ff2-9c99-203db2ff98b4" Feature="ProductFeature"> |
21 |
<RegistryValue Root="HKCR" Key="KCOM" Type="expandable" Name="URL Protocol" Value="" KeyPath="yes"/> |
22 |
</Component> |
23 |
<Component Id="RegistryEntriesCommand" Guid="e679ce5c-8a6f-48b2-836f-9ee96bdfd71f" Feature="ProductFeature"> |
24 |
<RegistryValue Root="HKCR" Key="KCOM\shell\open\command" Type="string" Value=""[INSTALLFOLDER]KCOM.exe" "%1"" KeyPath="yes"/> |
25 |
</Component> |
26 |
<Component Id="DesktopShortcut" Guid="DF06024A-95FE-43E2-BDF2-7C686EAF391F" Feature="ProductFeature" Win64='yes'> |
27 |
<RegistryValue Root="HKCU" Key="Software\DOFTECH\MARKUS" Name="installed" Type="integer" Value="1" KeyPath="yes"/> |
28 |
<Shortcut Id="DesktopShortcut" |
29 |
Directory="DesktopFolder" |
30 |
Name="MARKUS" |
31 |
Description="PDF Markup Tool" |
32 |
Target="[INSTALLFOLDER]KCOM.exe" |
33 |
WorkingDirectory="INSTALLFOLDER" /> |
34 |
<RemoveFolder Id="DesktopFolder" On="uninstall"/> |
35 |
</Component> |
36 |
</Directory> |
37 |
|
38 |
<Directory Id="ProgramFiles64Folder"> |
39 |
<Directory Id="COMPANYFOLDER" Name="DOFTECH"> |
40 |
<Directory Id="INSTALLFOLDER" Name="MARKUS" /> |
41 |
</Directory> |
42 |
</Directory> |
43 |
</Directory> |
44 |
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLFOLDER" /> |
45 |
<UIRef Id="WixUI_InstallDir"/> |
46 |
|
47 |
<UI> |
48 |
<Publish Dialog="ExitDialog" |
49 |
Control="Finish" |
50 |
Event="DoAction" |
51 |
Value="LaunchApplication">WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed |
52 |
</Publish> |
53 |
</UI> |
54 |
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="Launch MARKUS" /> |
55 |
<Property Id="WixShellExecTarget" Value="[INSTALLFOLDER]KCOM.exe" /> |
56 |
<CustomAction Id="LaunchApplication" BinaryKey="WixCA" DllEntry="WixShellExec" Impersonate="yes" /> |
57 |
</Fragment> |
58 |
|
59 |
<Fragment> |
60 |
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> |
61 |
<!-- TODO: Remove the comments around this Component element and the ComponentRef below in order to add resources to this installer. --> |
62 |
<!-- <Component Id="ProductComponent"> --> |
63 |
<!-- TODO: Insert files, registry keys, and other resources here. --> |
64 |
<!-- </Component> --> |
65 |
</ComponentGroup> |
66 |
</Fragment> |
67 |
|
68 |
<Fragment> |
69 |
<DirectoryRef Id="INSTALLFOLDER"> |
70 |
<Directory Id="dir242DC17B8DFC53C13CAF172FC08B730A" Name="de" /> |
71 |
<Directory Id="dir9AE38F4F5CB5E565E774521E138F44FD" Name="es" /> |
72 |
<Directory Id="dirB55DFDA91FEE7CCCBC65CA7493B75748" Name="fr" /> |
73 |
<Directory Id="dir45DE18DD71F3E8DD6BE4A0E2B48778C8" Name="it" /> |
74 |
<Directory Id="dirF152986C1E6339E5EF84FD1370841521" Name="ko" /> |
75 |
<Directory Id="dir2F3D431E0ED26930C4D37E679C7700A1" Name="nl" /> |
76 |
<Directory Id="dir06249C254B8FEA6A37A7C6E4984EF433" Name="tessdata" /> |
77 |
<Directory Id="dirE562A4656FE03253EA39D17E8127BA05" Name="tr" /> |
78 |
<Directory Id="dirD38EDF1F361B4F099EBE0B9D8968D256" Name="x86" /> |
79 |
<Directory Id="dirCFEC9E4F88644EEEA2E2C3669DAF0201" Name="x64" /> |
80 |
<Directory Id="CommonAppDataFolder"> |
81 |
<Directory Id="MyAppDataFolder" Name="MARKUS" > |
82 |
<Component Id="CreateMyAppDataFolder" Guid="697A5A1C-88DB-4D1B-8C7A-614B8A20CD44" Win64='yes'> |
83 |
<CreateFolder /> |
84 |
</Component> |
85 |
</Directory> |
86 |
</Directory> |
87 |
</DirectoryRef> |
88 |
</Fragment> |
89 |
<Fragment> |
90 |
<ComponentGroup Id="MARKUS"> |
91 |
<ComponentRef Id="CreateMyAppDataFolder" /> |
92 |
<Component Id="cmpCC866C67D0ACDB0EBE26789908374F45" Directory="INSTALLFOLDER" Guid="F6CF8A7C-00AA-4B45-ADD4-F3DA249D8E64" Win64='yes'> |
93 |
<File Id="fil4A00EA3A4A830EE9C257BEC8A7AA9E1A" KeyPath="yes" Source=".\Setup\Bytescout.PDFExtractor.dll" /> |
94 |
</Component> |
95 |
<Component Id="cmp25D995530710C8C386E94FD45CF48079" Directory="INSTALLFOLDER" Guid="F42D5123-8467-49D5-9B23-B6E2F94A1DB2" Win64='yes'> |
96 |
<File Id="fil8FE9B2B8DE4E517EC09CDEB3CD125199" KeyPath="yes" Source=".\Setup\Bytescout.PDFExtractor.OCRExtension.dll" /> |
97 |
</Component> |
98 |
<Component Id="cmp0BFABD100B4065787B40AA6B05938DF7" Directory="INSTALLFOLDER" Guid="47BCF3AA-F366-4D2F-AC85-4F08EF19297A" Win64='yes'> |
99 |
<File Id="fil1D38723F4A034EDE78B6A3B94EFB99F2" KeyPath="yes" Source=".\Setup\EntityFramework.dll" /> |
100 |
</Component> |
101 |
<Component Id="cmp6CF5CB56E3583D0EBD44D2BB10A62A27" Directory="INSTALLFOLDER" Guid="E0007A37-1DBD-49F4-B24B-D758C1209839" Win64='yes'> |
102 |
<File Id="filD3369B082D009ADB833B8DD9F589E45E" KeyPath="yes" Source=".\Setup\EntityFramework.xml" /> |
103 |
</Component> |
104 |
<Component Id="cmpEFC8E4FEAD65C6F8432B4EB578EBEA5F" Directory="INSTALLFOLDER" Guid="DC38EC4A-2587-418E-BDB8-5031B21CFD8D" Win64='yes'> |
105 |
<File Id="filD04D74C9E941CA5FA1661C44EBD7C811" KeyPath="yes" Source=".\Setup\IFinalPDF.dll" /> |
106 |
</Component> |
107 |
<Component Id="cmpA415203DE9EF9D193E74C69FE81234D3" Directory="INSTALLFOLDER" Guid="D988FC9F-EEBB-4DA9-BDA2-46B926576509" Win64='yes'> |
108 |
<File Id="fil83609071B2AD8A06678837154646C3FB" KeyPath="yes" Source=".\Setup\IKCOM.dll" /> |
109 |
</Component> |
110 |
<Component Id="cmp1DE0B23F7942D4E47B62522F774F3C76" Directory="INSTALLFOLDER" Guid="A6489D0B-4E42-4F64-B34E-410A0A6A4DCC" Win64='yes'> |
111 |
<File Id="filF35DB5A41DFF81B0642F8FCBC3DFB906" KeyPath="yes" Source=".\Setup\itextsharp.dll" /> |
112 |
</Component> |
113 |
<Component Id="cmp93004A2A70CA6CC5550444DB6A0BB24B" Directory="INSTALLFOLDER" Guid="C100266E-38BC-48D0-A690-F4C02D0E35C5" Win64='yes'> |
114 |
<File Id="fil718E22AC4914F03FC39F7293CDC8C672" KeyPath="yes" Source=".\Setup\itextsharp.xml" /> |
115 |
</Component> |
116 |
<Component Id="cmp9DBCA795D932AB083234E0DAEF7CCCC5" Directory="INSTALLFOLDER" Guid="204BC3E0-DAC5-4467-B490-47964D9A7A25" Win64='yes'> |
117 |
<File Id="filDBD3D396B7182945BD91EEFC05F44BB9" KeyPath="yes" Source=".\Setup\KCOM.exe" /> |
118 |
</Component> |
119 |
<Component Id="cmp008EC7C4B15BA79DEC806A9852526EF9" Directory="INSTALLFOLDER" Guid="B4829BEF-7376-4039-8E1D-8A46D257F4AF" Win64='yes'> |
120 |
<File Id="filD7A7D725F3C20E26B1A149EAABD9323C" KeyPath="yes" Source=".\Setup\KCOM.exe.config" /> |
121 |
</Component> |
122 |
<Component Id="cmp7752819596C3476DB4E5F7A60F8FE644" Directory="INSTALLFOLDER" Guid="04E50F42-40E2-4DAE-A14E-6C966A6D1813" Win64='yes'> |
123 |
<File Id="filFF54F68C528A4A959268781594F5D596" KeyPath="yes" Source=".\Setup\SmartUpdate.exe" /> |
124 |
</Component> |
125 |
<Component Id="cmp969D915ED42B411BA95424C403A6A841" Directory="INSTALLFOLDER" Guid="7EA8712F-DF55-4892-BFDF-AEAE4BB24E25" Win64='yes'> |
126 |
<File Id="filDF23C3351DE043E29012E797F541D0F4" KeyPath="yes" Source=".\Setup\SmartUpdate.exe.config" /> |
127 |
</Component> |
128 |
<Component Id="cmpD3A6FA6C7B0D4A7F8464F61659F02115" Directory="INSTALLFOLDER" Guid="123D40A1-7FF9-4CFB-9837-E1A00E2A7A70" Win64='yes'> |
129 |
<File Id="fil9C8C2AB2B1E142458FBD1EB991F289E1" KeyPath="yes" Source=".\packages\potrace.exe" /> |
130 |
</Component> |
131 |
<Component Id="cmp40B0E7C91C025AEEEF1F0DEC51A66549" Directory="INSTALLFOLDER" Guid="69d5a0ff-23db-4044-b874-1f8078446e24" Win64='yes'> |
132 |
<File Id="filF60CE67197837623CD57BE23CB07368E" KeyPath="yes" Source=".\Setup\CommonLib.dll" /> |
133 |
</Component> |
134 |
<Component Id="cmp40B0E7C91C025AAEEF1F0DEC51A66549" Directory="INSTALLFOLDER" Guid="471A4642-5A10-49EB-A77A-CF5C821BA1F1" Win64='yes'> |
135 |
<File Id="filF60CE67197837613CD57BE23CB07368E" KeyPath="yes" Source=".\Setup\KCOMDataModel.dll" /> |
136 |
</Component> |
137 |
<Component Id="cmpEE8E531D52E746388211D454A7B652CD" Directory="INSTALLFOLDER" Guid="BF70CAD3-28DF-44F2-95DC-F9ECDFA33BC9" Win64='yes'> |
138 |
<File Id="filF33A63AB801D7E78849A4330E53EBD7B" KeyPath="yes" Source=".\Setup\KCOMDataModel.dll.config" /> |
139 |
</Component> |
140 |
<Component Id="cmpFE0047A5420B60BC9070B49ED04A3DF7" Directory="INSTALLFOLDER" Guid="92A19E1A-AD00-40EE-9194-1140097E3D0D" Win64='yes'> |
141 |
<File Id="filDB2B5EE0EF352042DCB528551CFF336A" KeyPath="yes" Source=".\Setup\MarkupToPDF.dll" /> |
142 |
</Component> |
143 |
<Component Id="cmpBF387E9588F2B8473B629AAB925D2239" Directory="INSTALLFOLDER" Guid="D65A7FBC-F1DE-4031-97A3-B99E215B3C70" Win64='yes'> |
144 |
<File Id="fil3BBE868726AE8A4E2066B45DD738F0E3" KeyPath="yes" Source=".\Setup\MarkupToPDF.dll.config" /> |
145 |
</Component> |
146 |
<Component Id="cmp2B9822AB4FE29C97D7C74389B67E3A7B" Directory="INSTALLFOLDER" Guid="EA07BB02-ED13-4A69-93E0-B4CE0833B27D" Win64='yes'> |
147 |
<File Id="filD10FADEA0033B1FF9119AD86377B6DFB" KeyPath="yes" Source=".\Setup\Microsoft.AspNet.SignalR.Client.dll" /> |
148 |
</Component> |
149 |
<Component Id="cmp601B3BD81B5071744666A47E821CCDD1" Directory="INSTALLFOLDER" Guid="3FD119D8-FE0C-4C65-824E-107E25AF8B00" Win64='yes'> |
150 |
<File Id="fil4F8D22903F1C540154297E75E8066C41" KeyPath="yes" Source=".\Setup\Microsoft.AspNet.SignalR.Client.xml" /> |
151 |
</Component> |
152 |
<Component Id="cmp227B2F253D6CB8A27087F47F70A62459" Directory="INSTALLFOLDER" Guid="D6BC83C1-C841-4BF6-89FF-5677B1AE8B09" Win64='yes'> |
153 |
<File Id="filB5261509ADB8E7D2D70A1C67DCA37876" KeyPath="yes" Source=".\Setup\Microsoft.Expression.Interactions.dll" /> |
154 |
</Component> |
155 |
<Component Id="cmpC2107C307F76E546D2A4A5EAD4DA36D7" Directory="INSTALLFOLDER" Guid="D6643927-25B3-4ED4-B890-84CE3D9EDB07" Win64='yes'> |
156 |
<File Id="filBA11534FF762BA52842645F853FD1935" KeyPath="yes" Source=".\Setup\Microsoft.Expression.Interactions.xml" /> |
157 |
</Component> |
158 |
<Component Id="cmp8D70D98B32C8F908DD58C5F06708F289" Directory="INSTALLFOLDER" Guid="E062FD1B-A2C7-4DAE-B5F7-6DB797F4A6CA" Win64='yes'> |
159 |
<File Id="fil65C3764DFEF4B816AA91E646D63059C1" KeyPath="yes" Source=".\Setup\Microsoft.Threading.Tasks.dll" /> |
160 |
</Component> |
161 |
<Component Id="cmp1DFBDA5C3F28C07C3DEBDDBAE7F78802" Directory="INSTALLFOLDER" Guid="0244B3F6-694F-4D60-BAFB-08D0ABF12738" Win64='yes'> |
162 |
<File Id="fil88E67E79EF1C4E174E3CA55C79D438EF" KeyPath="yes" Source=".\Setup\Microsoft.Threading.Tasks.Extensions.Desktop.dll" /> |
163 |
</Component> |
164 |
<Component Id="cmp1CEBF83F44FBF4E54F6836267184EBCB" Directory="INSTALLFOLDER" Guid="AC2BADB9-D7D3-4DFF-93F4-60BAFF9B6946" Win64='yes'> |
165 |
<File Id="fil73DE8E4573C49C252AF9BBEB750C3371" KeyPath="yes" Source=".\Setup\Microsoft.Threading.Tasks.Extensions.Desktop.xml" /> |
166 |
</Component> |
167 |
<Component Id="cmp2BD2CA101B27AF1371B06F4F15D95F9B" Directory="INSTALLFOLDER" Guid="A88C22F8-D166-429A-9BBF-C61374C3C768" Win64='yes'> |
168 |
<File Id="fil477B767EE43BD465EE01C8F343860270" KeyPath="yes" Source=".\Setup\Microsoft.Threading.Tasks.Extensions.dll" /> |
169 |
</Component> |
170 |
<Component Id="cmpF17FF2B4A4721FA24BEFA74C0309A2F1" Directory="INSTALLFOLDER" Guid="99FD7363-1B2E-4FD1-A8C9-3DAD72508122" Win64='yes'> |
171 |
<File Id="fil34823D88AB36900C40AB3A8E7D4BD88A" KeyPath="yes" Source=".\Setup\Microsoft.Threading.Tasks.Extensions.xml" /> |
172 |
</Component> |
173 |
<Component Id="cmp70F570FFEF73490225CDC4144CEC292F" Directory="INSTALLFOLDER" Guid="2F862469-B791-465A-B6DA-40CAF1AE0696" Win64='yes'> |
174 |
<File Id="fil8DFD77FF75A79420C9E864EAFB8BD4C3" KeyPath="yes" Source=".\Setup\Microsoft.Threading.Tasks.xml" /> |
175 |
</Component> |
176 |
<Component Id="cmpBC4FC00A26E7D32479D42D3411317FC5" Directory="INSTALLFOLDER" Guid="66675814-6C27-4B75-837F-12218179C428" Win64='yes'> |
177 |
<File Id="fil90A8AAD9FC612906D405476D61CEA3F4" KeyPath="yes" Source=".\Setup\Newtonsoft.Json.dll" /> |
178 |
</Component> |
179 |
<Component Id="cmp125C379E185231EFADA4CB4301BD0A9E" Directory="INSTALLFOLDER" Guid="876DA7E8-ED43-4C22-B6E9-9FB423B79821" Win64='yes'> |
180 |
<File Id="fil3A2F44A7730E98D18E0948B3261DFABD" KeyPath="yes" Source=".\Setup\Newtonsoft.Json.xml" /> |
181 |
</Component> |
182 |
<Component Id="cmp82162AA35E4D78F0F145A3CCC93A196B" Directory="INSTALLFOLDER" Guid="C2BCCC3F-1013-40C8-88B2-E0EBC143ED13" Win64='yes'> |
183 |
<File Id="fil30E1423B0A61DF08B361E12C1768FD64" KeyPath="yes" Source=".\Setup\PDFNet.dll" /> |
184 |
</Component> |
185 |
<Component Id="cmp43571D5B3C98C620B91CFB722AB036A9" Directory="INSTALLFOLDER" Guid="A3528BD7-DF0A-4334-8BF7-75FCC2328A63" Win64='yes'> |
186 |
<File Id="fil25C6F19EFB20FE77CA17650F918CB561" KeyPath="yes" Source=".\Setup\RestSharp.dll" /> |
187 |
</Component> |
188 |
<Component Id="cmpA07E47E90BE78F39DC836350A272AD7E" Directory="INSTALLFOLDER" Guid="175CE52D-477A-4E45-8C62-A3EAFCE48F83" Win64='yes'> |
189 |
<File Id="filFC40DFE58E4E3410234192A7B56EE5DA" KeyPath="yes" Source=".\Setup\RestSharp.xml" /> |
190 |
</Component> |
191 |
<Component Id="cmp0B7DCF3BDD5BA1BE346BED244739B409" Directory="INSTALLFOLDER" Guid="F76B9108-0696-4D5C-B5B4-DD96699B00F6" Win64='yes'> |
192 |
<File Id="filC9EC0B08804939F9B02B006B7F740330" KeyPath="yes" Source=".\Setup\Rxx.dll" /> |
193 |
</Component> |
194 |
<Component Id="cmp4D703F4F9E22020603CAD20F8A6732D6" Directory="INSTALLFOLDER" Guid="993A7FCB-02EC-41DD-B6FB-7F695EF442F5" Win64='yes'> |
195 |
<File Id="fil443D417F48D98C2F0BF916AD1A5F7E73" KeyPath="yes" Source=".\Setup\Rxx.xml" /> |
196 |
</Component> |
197 |
<Component Id="cmp11C8820ECB0CB2D86F64F2996509DCA7" Directory="INSTALLFOLDER" Guid="10446EB8-93B1-499B-B740-48B67E18C8EE" Win64='yes'> |
198 |
<File Id="fil634B1A249B0D62C150EFB286C2C91A46" KeyPath="yes" Source=".\Setup\Telerik.Windows.Controls.dll" /> |
199 |
</Component> |
200 |
<Component Id="cmpAF56AE510EB3BDF893C5B06C6ABA7BDD" Directory="INSTALLFOLDER" Guid="31517AA7-FF5B-47AF-A585-D23EFD75C1F6" Win64='yes'> |
201 |
<File Id="filF728404062A49EA67C9D8FE3BBE0E898" KeyPath="yes" Source=".\Setup\Telerik.Windows.Controls.Docking.dll" /> |
202 |
</Component> |
203 |
<Component Id="cmp21BF690CF842B5194CB2028F73189055" Directory="INSTALLFOLDER" Guid="2D9F9627-560D-405C-B008-841034AD2A49" Win64='yes'> |
204 |
<File Id="fil266D83FF68961E612507118F431810F7" KeyPath="yes" Source=".\Setup\Telerik.Windows.Controls.GridView.dll" /> |
205 |
</Component> |
206 |
<Component Id="cmp4CBD77EFA337CFC3401C374F65E29BAA" Directory="INSTALLFOLDER" Guid="BE75CF50-CAA4-47B1-8D37-0D3C18912AF5" Win64='yes'> |
207 |
<File Id="fil3DF9298853D1D63F2B5664B24979D0E0" KeyPath="yes" Source=".\Setup\Telerik.Windows.Controls.Input.dll" /> |
208 |
</Component> |
209 |
<Component Id="cmpBBA2EA4FDA3C5AA2693FAC9589038964" Directory="INSTALLFOLDER" Guid="6C3C743A-B83B-4B8E-8454-A03C91C7F789" Win64='yes'> |
210 |
<File Id="filDC3BAC1BF9BBD0564415BD06BEEE0135" KeyPath="yes" Source=".\Setup\Telerik.Windows.Controls.Navigation.dll" /> |
211 |
</Component> |
212 |
<Component Id="cmpBF5C0D6200AF06B163C4D15C43D1664D" Directory="INSTALLFOLDER" Guid="F84B084E-331D-4BE1-A479-0A9FE0515B86" Win64='yes'> |
213 |
<File Id="filF79E0D2ADE14C7A2E11C65C296BC40BF" KeyPath="yes" Source=".\Setup\Telerik.Windows.Controls.RibbonView.dll" /> |
214 |
</Component> |
215 |
<Component Id="cmp92AE6AD1C56764FC0C2F256343677A9F" Directory="INSTALLFOLDER" Guid="C727A92F-1EB1-4975-9546-19EEB5B859DC" Win64='yes'> |
216 |
<File Id="filD747EE49E2E0D8A06187AA226FF1C561" KeyPath="yes" Source=".\Setup\Telerik.Windows.Data.dll" /> |
217 |
</Component> |
218 |
<Component Id="cmpCD235197A0E4A6BCD3DEB46A5728EB4F" Directory="INSTALLFOLDER" Guid="2374F5C7-960C-427B-A0F1-800E4B830DBB" Win64='yes'> |
219 |
<File Id="fil0E4AE6C9555A11AC8411AE8BE6530CDA" KeyPath="yes" Source=".\Setup\Telerik.Windows.Themes.VisualStudio2013.dll" /> |
220 |
</Component> |
221 |
<Component Id="cmp7F07F6231918203727082BB6A28CC75F" Directory="INSTALLFOLDER" Guid="22FE42A1-8651-460D-B867-67E1CC2FC670" Win64='yes'> |
222 |
<File Id="fil3E19A0F06927704B530947F360809AD8" KeyPath="yes" Source=".\Setup\Telerik.Windows.Zip.dll" /> |
223 |
</Component> |
224 |
<Component Id="cmpFF91FE36548D6FA9C8D0DC80206BE1EF" Directory="INSTALLFOLDER" Guid="C478F137-DD9A-4628-A07B-8CAFF92BA681" Win64='yes'> |
225 |
<File Id="fil898D8F5BF92067A65BDD539092A9A061" KeyPath="yes" Source=".\Setup\Telerik.Windows.Zip.xml" /> |
226 |
</Component> |
227 |
<Component Id="cmp0514F1BB70C8ECCFF44A0A355A53441B" Directory="INSTALLFOLDER" Guid="F82992EC-E1EA-4C1A-92D7-388D207D0EFB" Win64='yes'> |
228 |
<File Id="fil9F98448866AC2226C494BD9810AF69EF" KeyPath="yes" Source=".\Setup\ToggleSwitch.dll" /> |
229 |
</Component> |
230 |
<Component Id="cmp2B79D8B21752ECF6DF82930454768404" Directory="INSTALLFOLDER" Guid="4DB19C60-1622-41C3-B973-AB1D58693C41" Win64='yes'> |
231 |
<File Id="filC5BEFD2EAA8948BAA5384BF4A966EDA5" KeyPath="yes" Source=".\Setup\ZoomAndPan.dll" /> |
232 |
</Component> |
233 |
<Component Id="cmp8FBF2BDB3D3B55D95D738AE16D776E91" Directory="dir242DC17B8DFC53C13CAF172FC08B730A" Guid="067FD2A4-9164-4898-949A-7EF1F27BD840" Win64='yes'> |
234 |
<File Id="filCE89910B4AD60B36118F14BA5A049859" KeyPath="yes" Source=".\Setup\de\Telerik.Windows.Controls.resources.dll" /> |
235 |
</Component> |
236 |
<Component Id="cmp2A3F3E6BA2490D3202F1332C9EC174FB" Directory="dir9AE38F4F5CB5E565E774521E138F44FD" Guid="3E60D941-DBE2-472F-BB71-544F5CF588B4" Win64='yes'> |
237 |
<File Id="fil5D75AD906A44966046A97C57C4F18833" KeyPath="yes" Source=".\Setup\es\Telerik.Windows.Controls.resources.dll" /> |
238 |
</Component> |
239 |
<Component Id="cmp018DDF4A0C68B7CD2430401924062DB2" Directory="dirB55DFDA91FEE7CCCBC65CA7493B75748" Guid="7D79A805-D7B9-4E0F-885D-356CBB0AE28F" Win64='yes'> |
240 |
<File Id="filABD02679788FB3CF55E5561863627EB1" KeyPath="yes" Source=".\Setup\fr\Telerik.Windows.Controls.resources.dll" /> |
241 |
</Component> |
242 |
<Component Id="cmp7C8985562649003E18B234BE73E4B656" Directory="dir45DE18DD71F3E8DD6BE4A0E2B48778C8" Guid="F7BE7736-783F-438D-931E-D4B06DD4D0AD" Win64='yes'> |
243 |
<File Id="fil2AB10F4CAB8B23469B3F044F6FA6C8FF" KeyPath="yes" Source=".\Setup\it\Telerik.Windows.Controls.resources.dll" /> |
244 |
</Component> |
245 |
<Component Id="cmpF3CF8EE111D7CD9F53555A41C71F46AB" Directory="dirF152986C1E6339E5EF84FD1370841521" Guid="A503D6F2-C5CD-4AF4-8880-792E54E44464" Win64='yes'> |
246 |
<File Id="fil9DF62BA15697484B5ADD8F6342B72577" KeyPath="yes" Source=".\Setup\ko\EntityFramework.resources.dll" /> |
247 |
</Component> |
248 |
<Component Id="cmp9D362277309EED1B413C0EC318CDF8D0" Directory="dir2F3D431E0ED26930C4D37E679C7700A1" Guid="447C0CE9-D606-4557-8B59-66182CBD5E67" Win64='yes'> |
249 |
<File Id="fil0A3BECBAF1358C0A33D415890487998A" KeyPath="yes" Source=".\Setup\nl\Telerik.Windows.Controls.resources.dll" /> |
250 |
</Component> |
251 |
<Component Id="cmp0CA869F93E8C96460E9DEDDBA02904A3" Directory="dirE562A4656FE03253EA39D17E8127BA05" Guid="EFC4F972-411E-42DB-8F9E-AF5AA092C2EB" Win64='yes'> |
252 |
<File Id="filE14203CE7880C200F8EBF2F86DD14C45" KeyPath="yes" Source=".\Setup\tr\Telerik.Windows.Controls.resources.dll" /> |
253 |
</Component> |
254 |
<Component Id="cmpB972CF14E2FE46EF4C27DF8E2A8D8148" Directory="dir06249C254B8FEA6A37A7C6E4984EF433" Guid="DD3F9F2D-37DC-4FB1-BA8A-BE7600D0F681" Win64='yes'> |
255 |
<File Id="fil6A0332515469DC460F8463EC6A6624A9" KeyPath="yes" Source=".\Setup\tessdata\deu.traineddata" /> |
256 |
</Component> |
257 |
<Component Id="cmp92673DCD3A790F0AE44C8C35A1E2CE7C" Directory="dir06249C254B8FEA6A37A7C6E4984EF433" Guid="97CA2A94-A16D-4160-92CC-9917011E793F" Win64='yes'> |
258 |
<File Id="fil8A735A93EC1DA3907F32FD0458422B92" KeyPath="yes" Source=".\Setup\tessdata\eng.traineddata" /> |
259 |
</Component> |
260 |
<Component Id="cmp9971145325DD7CCCE8C465A817FDC26A" Directory="dir06249C254B8FEA6A37A7C6E4984EF433" Guid="13D63C44-13B4-4FDA-BBE5-811D4086E0B0" Win64='yes'> |
261 |
<File Id="filE90E86FD8DB35F24AAC22256077E0AA0" KeyPath="yes" Source=".\Setup\tessdata\fra.traineddata" /> |
262 |
</Component> |
263 |
<Component Id="cmpE2CD3D3C1E99C37D8F73459EBEFD3BA4" Directory="dir06249C254B8FEA6A37A7C6E4984EF433" Guid="25B83C3D-915F-40D3-98E9-50F395072392" Win64='yes'> |
264 |
<File Id="filFA0821084DD0DB0573FAFB7DB367CDF2" KeyPath="yes" Source=".\Setup\tessdata\spa.traineddata" /> |
265 |
</Component> |
266 |
<Component Id="cmpF29925B8A38BDFA82A14B03E8E014607" Directory="INSTALLFOLDER" Guid="ACE2792D-E70E-4C4C-8637-8229B28CCFC6" Win64='yes'> |
267 |
<File Id="filB5FCD36D58E7D8AEF760144912EFA5B4" KeyPath="yes" Source=".\Setup\MarkUsODAConvert.dll" /> |
268 |
</Component> |
269 |
<Component Id="cmp9E1CB36568BDD902925888C461FDF78C" Directory="INSTALLFOLDER" Guid="93FB011F-E405-413B-8991-FCC3E84D8BBD" Win64='yes'> |
270 |
<File Id="fil09A53EFF8D63FC0DEB9DA52CD340A5C1" KeyPath="yes" Source=".\Setup\SCENEOE_19.12_11.tx" /> |
271 |
</Component> |
272 |
<Component Id="cmp4AAAF23576449894C66F0CD0A34DD81E" Directory="INSTALLFOLDER" Guid="0D279D98-F271-4E6A-BA5E-86619CAEFE4D" Win64='yes'> |
273 |
<File Id="filBF3009E800CE3B36AC8E63585FE2117F" KeyPath="yes" Source=".\Setup\Svg2Xaml.dll" /> |
274 |
</Component> |
275 |
<Component Id="cmp096B4B06A37EF2531C9A1122D763E919" Directory="INSTALLFOLDER" Guid="02814047-5201-4CD3-A63B-43E4051BD1F6" Win64='yes'> |
276 |
<File Id="fil56681951F589A14F0B808D7D4F936C29" KeyPath="yes" Source=".\Setup\Svg2Xaml.xml" /> |
277 |
</Component> |
278 |
<Component Id="cmp1B652B5A2998B2BEDA530CC2119DB466" Directory="INSTALLFOLDER" Guid="3FD21C03-6A49-4D5E-9008-9DF9190AA056" Win64='yes'> |
279 |
<File Id="fil6BAAC7266DE1037839FFF283BA41D2A3" KeyPath="yes" Source=".\Setup\ACCAMERA_19.12_11.tx" /> |
280 |
</Component> |
281 |
<Component Id="cmpFA758D6AA741C5339D94561940340555" Directory="INSTALLFOLDER" Guid="81578F70-9CBD-473E-8E9B-DFBF54220B13" Win64='yes'> |
282 |
<File Id="fil2AD3AAD49398F56302216A8855FA101F" KeyPath="yes" Source=".\Setup\AcMPolygonObj15_19.12_11.tx" /> |
283 |
</Component> |
284 |
<Component Id="cmp6753F9081CA3F6269616AE5CB4981129" Directory="INSTALLFOLDER" Guid="13231BB2-091C-44D1-8B0A-E9F73292B1D4" Win64='yes'> |
285 |
<File Id="fil4EDBBC93B9C199615BEA52341BE2F1E8" KeyPath="yes" Source=".\Setup\ATEXT_19.12_11.tx" /> |
286 |
</Component> |
287 |
<Component Id="cmpA0794F399D9F1CF2BCCF979FF5D774C5" Directory="INSTALLFOLDER" Guid="F54E43DB-F847-4073-A096-2BB7CE0F0B56" Win64='yes'> |
288 |
<File Id="fil26383127FA1BB7D518F0E85231E514F7" KeyPath="yes" Source=".\Setup\TD_Alloc_19.12_11.dll" /> |
289 |
</Component> |
290 |
<Component Id="cmpFC28E9C319166A0B377E88B35C021EAA" Directory="INSTALLFOLDER" Guid="F71A79DE-4817-4A0A-8BC2-F3EFF7C32129" Win64='yes'> |
291 |
<File Id="filB31B6B4C9EF44AAA887E22483BFD3BEF" KeyPath="yes" Source=".\Setup\TD_Ave_19.12_11.tx" /> |
292 |
</Component> |
293 |
<Component Id="cmpE34DA5709AE30781429D5A0F1B631EF0" Directory="INSTALLFOLDER" Guid="E606D47E-FB0D-46FC-AFF4-1F71BB16CC7A" Win64='yes'> |
294 |
<File Id="fil40954765A9B8F7967C407F0C42CD3F4B" KeyPath="yes" Source=".\Setup\TD_DbCore_19.12_11.dll" /> |
295 |
</Component> |
296 |
<Component Id="cmp70678B711AD4DAF65D44C94DC7F91CA2" Directory="INSTALLFOLDER" Guid="A0A19CFE-651A-4739-81F8-036A45795A60" Win64='yes'> |
297 |
<File Id="filE9B99A256540AC80D6D0BB5480A9A027" KeyPath="yes" Source=".\Setup\TD_DbEntities_19.12_11.tx" /> |
298 |
</Component> |
299 |
<Component Id="cmp314DF1A57D4C1BADBB2CD240212294E6" Directory="INSTALLFOLDER" Guid="BC4B9410-25D7-4A49-B2AA-488D23A37DF9" Win64='yes'> |
300 |
<File Id="fil0D48599EEE81507AA5DD44D7C52B9425" KeyPath="yes" Source=".\Setup\TD_DbIO_19.12_11.tx" /> |
301 |
</Component> |
302 |
<Component Id="cmp092E942D50A757525F35A78E0099A11C" Directory="INSTALLFOLDER" Guid="984384A5-1311-4104-88CF-F3E7C54BCAEA" Win64='yes'> |
303 |
<File Id="fil79113B41F3A96E18029D24D489E6FB5C" KeyPath="yes" Source=".\Setup\TD_DbRoot_19.12_11.dll" /> |
304 |
</Component> |
305 |
<Component Id="cmp64A5BAA53242932137C2C6B315893573" Directory="INSTALLFOLDER" Guid="6894D616-B8B3-49FC-B288-54E532D8A139" Win64='yes'> |
306 |
<File Id="fil1D755996AC0F21764256BC1AAB9AC14D" KeyPath="yes" Source=".\Setup\TD_Db_19.12_11.dll" /> |
307 |
</Component> |
308 |
<Component Id="cmp47EF1E5AB03F622F43642239CA22A52C" Directory="INSTALLFOLDER" Guid="1C48F15E-2C52-4FA3-9D7A-76D5278D9DD8" Win64='yes'> |
309 |
<File Id="fil3375818E6B8CBFBC756465A0EFEE2858" KeyPath="yes" Source=".\Setup\TD_DynBlocks_19.12_11.tx" /> |
310 |
</Component> |
311 |
<Component Id="cmpCD306593941BDDFBED4B6AE86B2AB313" Directory="INSTALLFOLDER" Guid="37B4550C-7429-4D69-9944-7AD810AE82F7" Win64='yes'> |
312 |
<File Id="filAB35915C590692BC310ABC9E1A71F04C" KeyPath="yes" Source=".\Setup\TD_Ge_19.12_11.dll" /> |
313 |
</Component> |
314 |
<Component Id="cmp5E454296BB351F19E84F7652B8BA6D45" Directory="INSTALLFOLDER" Guid="F158CF7B-B8BA-4EFA-B78C-0ABB472147AD" Win64='yes'> |
315 |
<File Id="filF05A4B658EFC8F2A83883EACFE965A06" KeyPath="yes" Source=".\Setup\TD_Gi_19.12_11.dll" /> |
316 |
</Component> |
317 |
<Component Id="cmp84FE100AB4974D6D1977EB546E25F082" Directory="INSTALLFOLDER" Guid="430FAD7C-9AED-44DF-AB67-23F30896DEC8" Win64='yes'> |
318 |
<File Id="fil14DC20C05871DCCB4912C393EAEBA34E" KeyPath="yes" Source=".\Setup\TD_Gs_19.12_11.dll" /> |
319 |
</Component> |
320 |
<Component Id="cmp69A2BB79A59DC7F6AA6C9A80CBD0F6D2" Directory="INSTALLFOLDER" Guid="623B0B63-C3D2-41B7-928D-E4A934107BD7" Win64='yes'> |
321 |
<File Id="filEA3DFBC1A6E2AD0F4D8C125A353B28D2" KeyPath="yes" Source=".\Setup\TD_Mgd_19.12_11.dll" /> |
322 |
</Component> |
323 |
<Component Id="cmpFCF3DA257725851D241AAE865DB8805D" Directory="INSTALLFOLDER" Guid="10F23FDA-95E3-4406-9661-09667D00A998" Win64='yes'> |
324 |
<File Id="filB7CF26770467BF8A5B4C83C617E89F1D" KeyPath="yes" Source=".\Setup\TD_Root_19.12_11.dll" /> |
325 |
</Component> |
326 |
<Component Id="cmpD7100D53F3B67289ABA73D6EBAA3EBD0" Directory="INSTALLFOLDER" Guid="9028AF26-F374-48F6-A87F-643609AA51FF" Win64='yes'> |
327 |
<File Id="filB21D180D9F7E35E2B7DE62E3F570D0A8" KeyPath="yes" Source=".\Setup\TD_Sm_19.12_11.tx" /> |
328 |
</Component> |
329 |
<Component Id="cmp67AEC051FCCB5693B6609D24AF63CE1A" Directory="INSTALLFOLDER" Guid="DA88618E-B1AD-411D-B833-DDBB401C76BD" Win64='yes'> |
330 |
<File Id="fil0A8F14C33F3B74BB962FF19EBC0EBC55" KeyPath="yes" Source=".\Setup\TD_SpatialIndex_19.12_11.dll" /> |
331 |
</Component> |
332 |
<Component Id="cmpAD42C6B2A8CAC2ED0D5FDBAA0E4107E6" Directory="INSTALLFOLDER" Guid="955950D0-69E7-4267-95A7-63EAA376FA3F" Win64='yes'> |
333 |
<File Id="fil19C9C0ACA5097C6E577768E9EE299417" KeyPath="yes" Source=".\Setup\TD_SwigCoreMgd.dll" /> |
334 |
</Component> |
335 |
<Component Id="cmpC73CFFAAD30A68C03E756C0798B2F465" Directory="INSTALLFOLDER" Guid="530475E2-A739-438D-8979-ECCAD0DF69E2" Win64='yes'> |
336 |
<File Id="fil5121BAE9A4CAB5F88A699C535A2E6978" KeyPath="yes" Source=".\Setup\TD_SwigDbMgd.dll" /> |
337 |
</Component> |
338 |
<Component Id="cmp1740A3550A865AACFD9E0F1551A7B3FF" Directory="INSTALLFOLDER" Guid="928E5BBF-790A-41CE-8373-6CA1BCABAD1B" Win64='yes'> |
339 |
<File Id="filC0040D2E5073284B85874B040079DC1C" KeyPath="yes" Source=".\Setup\TG_SwigDbMgd.dll" /> |
340 |
</Component> |
341 |
<Component Id="cmpF5FBD3938B844D06B2BB93F3C8E9735D" Directory="INSTALLFOLDER" Guid="972720D3-9F4E-4115-A867-D428DFFE9C00" Win64='yes'> |
342 |
<File Id="fil05D02B4AA1454B0BAAB715EC9DC4EA20" KeyPath="yes" Source=".\Setup\log4net.dll" /> |
343 |
</Component> |
344 |
<Component Id="cmp37D5E19B77924243BEC481CD72D30220" Directory="INSTALLFOLDER" Guid="FA4A1FA4-2393-4D7D-8C07-2012A751E1F5" Win64='yes'> |
345 |
<File Id="fil075399F2785342059E7C4C2B7872DA85" KeyPath="yes" Source=".\Setup\log4net.xml" /> |
346 |
</Component> |
347 |
<Component Id="cmpF187B9086CF14C36BDBD3C0DE1C638C3" Directory="INSTALLFOLDER" Guid="89E15C73-8F9B-4308-83EE-B35766DB54D2" Win64='yes'> |
348 |
<File Id="filE16E5C37CA1646DB833466207DAA438F" KeyPath="yes" Source=".\Setup\System.Data.SQLite.dll" /> |
349 |
</Component> |
350 |
<Component Id="cmpF187B9086CF14C36BDBA3C0DE1C638C3" Directory="INSTALLFOLDER" Guid="917bcf9e-afe7-40cc-b648-998a805d43eb" Win64='yes'> |
351 |
<File Id="filE16E5C37CA1646DB833466207DAA138F" KeyPath="yes" Source=".\Setup\System.Data.SQLite.dll.config" /> |
352 |
</Component> |
353 |
<Component Id="cmp23D2D49DF6C44A029D1A2AB241AC5A70" Directory="INSTALLFOLDER" Guid="9879429A-61B9-4EF5-9BB0-2C71A34543AF" Win64='yes'> |
354 |
<File Id="filEABB54BD3D0148B59040DE16589206A3" KeyPath="yes" Source=".\Setup\System.Data.SQLite.EF6.dll" /> |
355 |
</Component> |
356 |
<Component Id="cmp068D509157D54D23A542123CE71B5374" Directory="INSTALLFOLDER" Guid="1F5C3864-2808-4315-A408-1E9FDA733621" Win64='yes'> |
357 |
<File Id="fil89495469897C42868399E2A1D1CE119F" KeyPath="yes" Source=".\Setup\System.Data.SQLite.Linq.dll" /> |
358 |
</Component> |
359 |
<Component Id="cmp19F6DF8A2ABC78D782D76F1EEC9A5800" Directory="dirCFEC9E4F88644EEEA2E2C3669DAF0201" Guid="C1521B0F-E4EC-4399-89C6-3346D4CA2926" Win64='yes'> |
360 |
<File Id="filC7EA62E1AC64247AFBE682E8631402B8" KeyPath="yes" Source=".\Setup\x64\SQLite.Interop.dll" /> |
361 |
</Component> |
362 |
<Component Id="cmp77484AF39EF2F8BD64E876C33A1C3E49" Directory="dirD38EDF1F361B4F099EBE0B9D8968D256" Guid="12C908D5-3BC8-4B61-BEEE-60522A7D6BD9" Win64='yes'> |
363 |
<File Id="filD2ACACD0EBAF09B1953E9C3793C13C69" KeyPath="yes" Source=".\Setup\x86\SQLite.Interop.dll" /> |
364 |
</Component> |
365 |
<Component Id="cmpA999CE51CD7441D1ABF8967B4D2C7A9A" Directory="INSTALLFOLDER" Guid="1B9A77C2-1A1C-41A6-8875-A5393AE5AC7A" Win64='yes'> |
366 |
<File Id="filCB063063508C47CFBA76F059EFC71E72" KeyPath="yes" Source=".\Setup\System.Reactive.dll" /> |
367 |
</Component> |
368 |
<Component Id="cmpA7D3E561E3C645CAA87BCDA2052CE853" Directory="INSTALLFOLDER" Guid="2DB66F4F-9E7C-4050-BD2A-D9B825C660C0" Win64='yes'> |
369 |
<File Id="filCB33C867CDE342B6B09DB17464950739" KeyPath="yes" Source=".\Setup\System.Windows.Interactivity.dll" /> |
370 |
</Component> |
371 |
<Component Id="cmpAE9471B5C781B66CC26AA56090C503DB" Directory="INSTALLFOLDER" Guid="429E6E58-BC2A-4FA1-B602-31F58634612F" Win64='yes'> |
372 |
<File Id="filD94E7910168DF4A3CA03B9B5576C69A6" KeyPath="yes" Source=".\packages\ODA\FileDlgExt_19.12_11.dll" /> |
373 |
</Component> |
374 |
<Component Id="cmp142D251F15375220683DD92886C25F05" Directory="INSTALLFOLDER" Guid="5C2D17F7-EFE9-4101-ACAB-FE340F690142" Win64='yes'> |
375 |
<File Id="fil79B9E2153A53858582EA30E173F35CF0" KeyPath="yes" Source=".\packages\ODA\GeneratedSaxParser.dll" /> |
376 |
</Component> |
377 |
<Component Id="cmpBEF5B49E4DB08848DACE43E17CCB0D7C" Directory="INSTALLFOLDER" Guid="F3AB5132-BA3D-4E7F-A412-937585B869AF" Win64='yes'> |
378 |
<File Id="fil026B16F6614CF99C2EBC310160004E20" KeyPath="yes" Source=".\packages\ODA\libBuffer.dll" /> |
379 |
</Component> |
380 |
<Component Id="cmp3922099AEB6CB0085029FAF59192F6F1" Directory="INSTALLFOLDER" Guid="AAFC8A8C-944C-4BA4-871C-E64FC15B13BA" Win64='yes'> |
381 |
<File Id="filAEF324DFC4D3E347A76D9DE807948A35" KeyPath="yes" Source=".\packages\ODA\pcre.dll" /> |
382 |
</Component> |
383 |
<Component Id="cmp239FA0BDEE78F6742B72244E8D0666BE" Directory="INSTALLFOLDER" Guid="7484CFEE-EC77-49D1-AD70-143CA7AB674F" Win64='yes'> |
384 |
<File Id="fil1B4CC447D6A7226333D5525EABA9A78A" KeyPath="yes" Source=".\packages\ODA\PSToolkit_19.12_11.dll" /> |
385 |
</Component> |
386 |
<Component Id="cmp13B42A8D2727B60AFB5658DF4A93F26A" Directory="INSTALLFOLDER" Guid="664B2873-3B03-4DCC-BA20-11C637795BF7" Win64='yes'> |
387 |
<File Id="filC3338A24B0A1C5A74082BD4CC2659B21" KeyPath="yes" Source=".\packages\ODA\TD.tsbf" /> |
388 |
</Component> |
389 |
<Component Id="cmp7FA7D42DDDD429E40E896AB4AC9BF462" Directory="INSTALLFOLDER" Guid="1BE22284-C017-4795-A62C-F0A55AB60195" Win64='yes'> |
390 |
<File Id="fil813DFBC7FB128DD181AF5E151E8385DA" KeyPath="yes" Source=".\packages\ODA\TD_AcisBuilder_19.12_11.dll" /> |
391 |
</Component> |
392 |
<Component Id="cmp3EA93E133EA362B647F0AC3A7A4C7151" Directory="INSTALLFOLDER" Guid="4E62AB18-DE74-432D-93A5-6D53FBF753CE" Win64='yes'> |
393 |
<File Id="fil7772FB8061121EDD928C4D194917D430" KeyPath="yes" Source=".\packages\ODA\TD_BrepBuilder_19.12_11.dll" /> |
394 |
</Component> |
395 |
<Component Id="cmp13B4F8013FDCCA76AF430CE05B9E793C" Directory="INSTALLFOLDER" Guid="A4A18ABF-6C04-4CB1-862D-BBD63B8BF726" Win64='yes'> |
396 |
<File Id="filFD9D040AC76AB15AE6180E0CA35AE3C7" KeyPath="yes" Source=".\packages\ODA\TD_BrepRenderer_19.12_11.dll" /> |
397 |
</Component> |
398 |
<Component Id="cmp4437755E16B6472FF2C151468103DE7B" Directory="INSTALLFOLDER" Guid="392179E7-E3FC-4449-96EF-DE4C4DB404E5" Win64='yes'> |
399 |
<File Id="fil54F9160135496F64A1AD1C67FD1C5AC2" KeyPath="yes" Source=".\packages\ODA\TD_Br_19.12_11.dll" /> |
400 |
</Component> |
401 |
<Component Id="cmpD767456B1C15F19050A57C8376A7F4D1" Directory="INSTALLFOLDER" Guid="DED5FAD9-F638-4E11-9E2C-75907CB4C7D5" Win64='yes'> |
402 |
<File Id="filAF68F1590A9D50B91C7883BEABE13A82" KeyPath="yes" Source=".\packages\ODA\WinBitmap_19.12_11.txv" /> |
403 |
</Component> |
404 |
<Component Id="cmp0B6C3A4C1158028616488916948A684F" Directory="INSTALLFOLDER" Guid="F68AB556-5A16-4973-A2D1-FF56B36DC41A" Win64='yes'> |
405 |
<File Id="filD089D3E335DB90D5A1F95EC53314E3C0" KeyPath="yes" Source=".\packages\ODA\WinComposite_19.12_11.txv" /> |
406 |
</Component> |
407 |
<Component Id="cmpAB8E002911D4FCDD5E5683BE6EBE750B" Directory="INSTALLFOLDER" Guid="3A5C91FD-8C20-44DC-90D8-6EF066F6114F" Win64='yes'> |
408 |
<File Id="fil06ECBA90FAD21D384552E195E1C13F9C" KeyPath="yes" Source=".\packages\ODA\WinDirectX_19.12_11.txv" /> |
409 |
</Component> |
410 |
<Component Id="cmpE16DB77ECA036DBAFE4BCD65510F8699" Directory="INSTALLFOLDER" Guid="84AB140A-DC24-440C-AF1D-4695EF65A4C4" Win64='yes'> |
411 |
<File Id="fil5870380D8A7FC158DCC9F53210AEDA83" KeyPath="yes" Source=".\packages\ODA\WinGDI_19.12_11.txv" /> |
412 |
</Component> |
413 |
<Component Id="cmp361D3A0E4928A751E238C87EAA747B67" Directory="INSTALLFOLDER" Guid="7EB6AE2A-67CD-4B93-9D86-48E54E3155BB" Win64='yes'> |
414 |
<File Id="fil439C78662F7E5FFE035DDC5CFAB64236" KeyPath="yes" Source=".\packages\ODA\WinGLES2_19.12_11.txv" /> |
415 |
</Component> |
416 |
<Component Id="cmpE0C1C69DFA1F3A131268580661EE3C12" Directory="INSTALLFOLDER" Guid="4C711F15-416F-40B9-984C-40362F9908FD" Win64='yes'> |
417 |
<File Id="fil61F5DE6E846ADFA088BF33DC93443925" KeyPath="yes" Source=".\packages\ODA\WinOpenGL_19.12_11.txv" /> |
418 |
</Component> |
419 |
<Component Id="cmp506DD79C40281B78CE74CDBEB1E68643" Directory="INSTALLFOLDER" Guid="714523A6-E518-4939-BFBA-5428CC4451E8" Win64='yes'> |
420 |
<File Id="filB0B9F8BC36B407107C0590C54ABAC30E" KeyPath="yes" Source=".\packages\ODA\XmlGLES2_19.12_11.txv" /> |
421 |
</Component> |
422 |
<Component Id="cmpC48D890621940EE9A20E147AC932F977" Directory="INSTALLFOLDER" Guid="A9C7BFA3-1D7E-41D8-9DDE-EE0BA7ED3E23" Win64='yes'> |
423 |
<File Id="filBE520F5FFC9DAB23F69A3471C1131B0E" KeyPath="yes" Source=".\packages\ODA\AcGeolocationObj_19.12_11.tx" /> |
424 |
</Component> |
425 |
<Component Id="cmpA9452E6F34B6EB3920CC37EE0F404993" Directory="INSTALLFOLDER" Guid="81383CBD-F493-4D40-B178-414F1B0BF0FA" Win64='yes'> |
426 |
<File Id="filC2DAE708CA9C14DEA4FEEAABE2305427" KeyPath="yes" Source=".\packages\ODA\AcIdViewObj_19.12_11.tx" /> |
427 |
</Component> |
428 |
<Component Id="cmp655269E02F061288039151543E10B7DF" Directory="INSTALLFOLDER" Guid="01E28111-8E4B-4AC2-8677-4758175C7E63" Win64='yes'> |
429 |
<File Id="fil52ACD8C0018630228AE77BDCC8262C85" KeyPath="yes" Source=".\packages\ODA\AcModelDocObj_19.12_11.tx" /> |
430 |
</Component> |
431 |
<Component Id="cmp46AC21FC4A425A4F7B8CFC0036EDDF85" Directory="INSTALLFOLDER" Guid="48AB762E-5062-44BF-893D-B530E382E09A" Win64='yes'> |
432 |
<File Id="fil338B5868019A67BE70C80D9350E48E2F" KeyPath="yes" Source=".\packages\ODA\AECIIB_19.12_11.tx" /> |
433 |
</Component> |
434 |
<Component Id="cmpA3107E66555265D0C3CAD355675A153E" Directory="INSTALLFOLDER" Guid="17906BF2-E83F-40F9-A851-6EE1637C6184" Win64='yes'> |
435 |
<File Id="fil2E4A65887BBAAA9CD8B3A58EB076F175" KeyPath="yes" Source=".\packages\ODA\AsdkSmileyDb_19.12_11.tx" /> |
436 |
</Component> |
437 |
<Component Id="cmpED719E107B2CFE4B5D061A9D50F9DF71" Directory="INSTALLFOLDER" Guid="1B78A282-80D2-4DA8-9757-8D54B8012066" Win64='yes'> |
438 |
<File Id="fil07B84E0AA765CADD5144709002BC6842" KeyPath="yes" Source=".\packages\ODA\AutoSurfServices_19.12_11.tx" /> |
439 |
</Component> |
440 |
<Component Id="cmpFF11BBB2F89D1A857093BE66EBEB6469" Directory="INSTALLFOLDER" Guid="5E73A0BD-108C-4600-B279-CA4963324B4D" Win64='yes'> |
441 |
<File Id="filE544397BF6D6FC25D97478E743FF2126" KeyPath="yes" Source=".\packages\ODA\C3dModelerCommands_19.12_11.tx" /> |
442 |
</Component> |
443 |
<Component Id="cmp54AB4B03E0DD0A1B13FF41039F084488" Directory="INSTALLFOLDER" Guid="C8509CDB-529C-44FC-94AE-623907705D0D" Win64='yes'> |
444 |
<File Id="filFBEB5F65DB29C17E5CE1A3FEABA7D0C4" KeyPath="yes" Source=".\packages\ODA\C3dModeler_19.12_11.tx" /> |
445 |
</Component> |
446 |
<Component Id="cmpB192207CB70FF1265EF3B8D009B05080" Directory="INSTALLFOLDER" Guid="DE15C679-B80D-48EE-9D91-1EBD6A2DB665" Win64='yes'> |
447 |
<File Id="fil95A0E271FF733F894C75090C1415772C" KeyPath="yes" Source=".\packages\ODA\DbCommands_19.12_11.tx" /> |
448 |
</Component> |
449 |
<Component Id="cmpABB420AAD9EF71B7886044D35126792A" Directory="INSTALLFOLDER" Guid="52B05863-40FB-41C4-BAF9-0B6D1F3CC384" Win64='yes'> |
450 |
<File Id="fil0DB9F6EF3D1F0B65053756BD910F1E16" KeyPath="yes" Source=".\packages\ODA\DbConstraints_19.12_11.tx" /> |
451 |
</Component> |
452 |
<Component Id="cmp160393FD976FE1B9CC1F33295E41EC38" Directory="INSTALLFOLDER" Guid="F65F295D-95ED-4DF2-9045-1736C163E807" Win64='yes'> |
453 |
<File Id="fil574C29631CAC7342D34A011127FF9216" KeyPath="yes" Source=".\packages\ODA\DbCryptModule_19.12_11.tx" /> |
454 |
</Component> |
455 |
<Component Id="cmp728CF826EB7C34E8E37F3B657F618E60" Directory="INSTALLFOLDER" Guid="8D8D3C20-6008-4AC4-BFD1-8B4BAC4AB974" Win64='yes'> |
456 |
<File Id="filBFA1384142D87A261C061843F943EB52" KeyPath="yes" Source=".\packages\ODA\DbRuntimeIO_19.12_11.tx" /> |
457 |
</Component> |
458 |
<Component Id="cmp7493FE857C526F28FC9CA565FF6214A7" Directory="INSTALLFOLDER" Guid="74615CB1-7E4B-4498-862E-7918A9D3FC8B" Win64='yes'> |
459 |
<File Id="fil0968FB615318FD2B02F0D588CE06F378" KeyPath="yes" Source=".\packages\ODA\DgPlotStyleServices_19.12_11.tx" /> |
460 |
</Component> |
461 |
<Component Id="cmp881B27EAC9E2CF4B0B19882B09415709" Directory="INSTALLFOLDER" Guid="68DAE34B-4183-4EBB-A797-9F0D4258AE84" Win64='yes'> |
462 |
<File Id="filCD316AC1CFC7EB0143113FD2919308CF" KeyPath="yes" Source=".\packages\ODA\ExCommands_19.12_11.tx" /> |
463 |
</Component> |
464 |
<Component Id="cmp506DA476FCCAA929358EED3253AF81E8" Directory="INSTALLFOLDER" Guid="FBBDC5D9-2D37-4323-9816-5E8B8D02B28A" Win64='yes'> |
465 |
<File Id="filB4F1BB96A2AC26B804AF76F4E04608AF" KeyPath="yes" Source=".\packages\ODA\ExCustObjs_19.12_11.tx" /> |
466 |
</Component> |
467 |
<Component Id="cmp81D1D201E9F3A39665724DB2F097B44B" Directory="INSTALLFOLDER" Guid="CF6EA2F3-0B81-4485-A10E-FC462273A303" Win64='yes'> |
468 |
<File Id="filEA42CE6CBF70EC71BDD9DCA8698C75C4" KeyPath="yes" Source=".\packages\ODA\ExDeepCloning_19.12_11.tx" /> |
469 |
</Component> |
470 |
<Component Id="cmp9A29728AD1A13B097DB1DB6590EA33C0" Directory="INSTALLFOLDER" Guid="DC403A95-DB7D-4834-ACF9-73888DBBFD58" Win64='yes'> |
471 |
<File Id="fil2768539B012B3F125902983B17EFDE76" KeyPath="yes" Source=".\packages\ODA\ExDimAssoc_19.12_11.tx" /> |
472 |
</Component> |
473 |
<Component Id="cmpD4D4A5E0E0D85BBA78F21BA84F68EEC5" Directory="INSTALLFOLDER" Guid="B6735805-9AE1-4073-A6CB-A20E908A4CDD" Win64='yes'> |
474 |
<File Id="fil17BFDF92D2FA71159D7C0D9A9CAE5757" KeyPath="yes" Source=".\packages\ODA\ExDynamicBlocks_19.12_11.tx" /> |
475 |
</Component> |
476 |
<Component Id="cmp39D1EBA1265C9669F054176CD36ABE8E" Directory="INSTALLFOLDER" Guid="ED273261-E6E7-4955-87B0-8DB4455BB095" Win64='yes'> |
477 |
<File Id="fil3429943D13C4A2FC52620E7CAD9EEEC5" KeyPath="yes" Source=".\packages\ODA\ExEntityIntersection_19.12_11.tx" /> |
478 |
</Component> |
479 |
<Component Id="cmp38520AED5770CD25AD22CB116ECD5346" Directory="INSTALLFOLDER" Guid="5625BD16-E7C0-497E-80E4-3E17FE401D21" Win64='yes'> |
480 |
<File Id="fil7B87E564B22DC8CD46D68E61E50211DE" KeyPath="yes" Source=".\packages\ODA\ExEvalWatchers_19.12_11.tx" /> |
481 |
</Component> |
482 |
<Component Id="cmp855E2EABC85B70060EE7CB1E6E9520DC" Directory="INSTALLFOLDER" Guid="4917259D-5DC6-4BA3-AF1F-8C1E7E669BD9" Win64='yes'> |
483 |
<File Id="fil097C294A05AEA9C08BC9AA03AA07F47D" KeyPath="yes" Source=".\packages\ODA\ExFieldEvaluator_19.12_11.tx" /> |
484 |
</Component> |
485 |
<Component Id="cmpD89A6B2B2E7B99ACC2EC84C145F37C99" Directory="INSTALLFOLDER" Guid="FC2EFBE0-C7DB-431D-B15A-C851D6CBBD63" Win64='yes'> |
486 |
<File Id="fil84FB8DF849483252F75ED1A435D53866" KeyPath="yes" Source=".\packages\ODA\ExTimeProviderWin_19.12_11.tx" /> |
487 |
</Component> |
488 |
<Component Id="cmp9DEE92BD69E420B376A49F61A08E6778" Directory="INSTALLFOLDER" Guid="559DBB4C-E028-46AA-89EB-78254AB76DAE" Win64='yes'> |
489 |
<File Id="fil803D78AECAADE336E9803A064D689BE1" KeyPath="yes" Source=".\packages\ODA\GeoCommands_19.12_11.tx" /> |
490 |
</Component> |
491 |
<Component Id="cmp3449DFB8F2BEF1209D27B898B23DDE23" Directory="INSTALLFOLDER" Guid="81B15A12-E3AE-4E91-8083-403204BDD451" Win64='yes'> |
492 |
<File Id="fil4E7187850D4ACE3867AE4774E76A9BEA" KeyPath="yes" Source=".\packages\ODA\GripPoints_19.12_11.tx" /> |
493 |
</Component> |
494 |
<Component Id="cmpA9C90403BF25C9FF6528F73C41B4539E" Directory="INSTALLFOLDER" Guid="E78ECA2E-A433-4F59-80F9-76A43C05277B" Win64='yes'> |
495 |
<File Id="filD24FE94F6A02008C565A5AB627C60516" KeyPath="yes" Source=".\packages\ODA\Interop.OdaX.dll" /> |
496 |
</Component> |
497 |
<Component Id="cmp9529945F5EDCC800418663A7E266FBCD" Directory="INSTALLFOLDER" Guid="D2AAEE94-C5DD-493E-A6F6-D492BA1A7522" Win64='yes'> |
498 |
<File Id="fil326F91EE442FD5E288532E5019213B0D" KeyPath="yes" Source=".\packages\ODA\ISM_19.12_11.tx" /> |
499 |
</Component> |
500 |
<Component Id="cmp5F864159153CD780F111CBC0478A46D4" Directory="INSTALLFOLDER" Guid="04BA541F-A904-4743-B3FF-D8565B83D148" Win64='yes'> |
501 |
<File Id="filB416F1FD12819C68E2C5F2D7D1BD11F1" KeyPath="yes" Source=".\packages\ODA\ModelerCommands_19.12_11.tx" /> |
502 |
</Component> |
503 |
<Component Id="cmp013470CC19C950E3F6FD88B8C68B8AB6" Directory="INSTALLFOLDER" Guid="6A9F1BB8-2F6B-4728-8424-CDC5A87B61D6" Win64='yes'> |
504 |
<File Id="fil0403EFB51DD51CDECCEA211F57AEB73B" KeyPath="yes" Source=".\packages\ODA\ModelerGeometry_19.12_11.tx" /> |
505 |
</Component> |
506 |
<Component Id="cmp71393F977DB77CCD9A741282796C1211" Directory="INSTALLFOLDER" Guid="330158B1-645A-4303-B2BB-7CB211C2652C" Win64='yes'> |
507 |
<File Id="fil245D78B80FA360140988B925BFCB505A" KeyPath="yes" Source=".\packages\ODA\OBJToolkit_19.12_11.tx" /> |
508 |
</Component> |
509 |
<Component Id="cmpFE8A628F48D8262FC645FE0B629D11B3" Directory="INSTALLFOLDER" Guid="35950091-5186-424A-AA99-BA6E9A7D1E4B" Win64='yes'> |
510 |
<File Id="fil8E73E805739A29D0FE712F053BCE1982" KeyPath="yes" Source=".\packages\ODA\OdCurveFunctions_19.12_11.tx" /> |
511 |
</Component> |
512 |
<Component Id="cmpEC4F232B4539F199A5B0DC693FDEB7DF" Directory="INSTALLFOLDER" Guid="AF923925-9BF9-4239-9C81-E9C38A782AF6" Win64='yes'> |
513 |
<File Id="fil084382DBF0A5441BE668268EEF4F8C81" KeyPath="yes" Source=".\packages\ODA\OdDbGeoMapPE_19.12_11.tx" /> |
514 |
</Component> |
515 |
<Component Id="cmp29DB53E533D4EE022F9865F6D0068182" Directory="INSTALLFOLDER" Guid="9A0479FF-A5BD-4192-A414-B416794CE704" Win64='yes'> |
516 |
<File Id="fil0D3D3AE7EAF5DBFA0ED0B96C6A04D29D" KeyPath="yes" Source=".\packages\ODA\OdDbPartialViewing_19.12_11.tx" /> |
517 |
</Component> |
518 |
<Component Id="cmp3FCD6EC11D6446FFAB921BCB9749C375" Directory="INSTALLFOLDER" Guid="00D6BF40-9DD8-42E8-9EC0-5EE08CEBE4C0" Win64='yes'> |
519 |
<File Id="fil564D238701E3BFA1A13D1C7BE6A131EA" KeyPath="yes" Source=".\packages\ODA\OdGeoData_19.12_11.tx" /> |
520 |
</Component> |
521 |
<Component Id="cmp53FF7D02369866D08804B152E44C4A30" Directory="INSTALLFOLDER" Guid="1C68E8E6-D006-4046-86C9-D9BBE10534F5" Win64='yes'> |
522 |
<File Id="fil96F7DEC6499CF3878C95099F7B0EF07E" KeyPath="yes" Source=".\packages\ODA\OdOleItemHandler_19.12_11.tx" /> |
523 |
</Component> |
524 |
<Component Id="cmpC90359BE75B8E22BD082BBB2798444B8" Directory="INSTALLFOLDER" Guid="CAB88BDD-BD87-466D-90F4-1DF9B778D44F" Win64='yes'> |
525 |
<File Id="fil57D4AF57142C5DF3F89BF9626981990C" KeyPath="yes" Source=".\packages\ODA\OdOleSsItemHandler_19.12_11.tx" /> |
526 |
</Component> |
527 |
<Component Id="cmp3E5C03F7F6A7FADD4A9711B363D6378A" Directory="INSTALLFOLDER" Guid="BCE1ADAD-8C8D-4721-8B55-7FE6EBCB3D5B" Win64='yes'> |
528 |
<File Id="fil3D2FE14A92B4BD917F651F77B6ADD702" KeyPath="yes" Source=".\packages\ODA\OpenCadTx_19.12_11.tx" /> |
529 |
</Component> |
530 |
<Component Id="cmpC3DE899C9DBF22F6C812596CBA597401" Directory="INSTALLFOLDER" Guid="7B83963A-B44C-4EDB-BBCE-FB181081E936" Win64='yes'> |
531 |
<File Id="fil42BBB20A35B6FFE7C53D57C4B42943B4" KeyPath="yes" Source=".\packages\ODA\OpenCadTx_19.8_lic11.tx" /> |
532 |
</Component> |
533 |
<Component Id="cmpA70C8137160E8986B6D0946D50FE8072" Directory="INSTALLFOLDER" Guid="B3E767A9-461F-4CD2-A98B-8C52875B5173" Win64='yes'> |
534 |
<File Id="filE420B3DF4A6296BAC7A284B77B43A712" KeyPath="yes" Source=".\packages\ODA\OverrulingSample_19.12_11.tx" /> |
535 |
</Component> |
536 |
<Component Id="cmp2E4A5C1247776B2ABA6C9FF1D56D05D8" Directory="INSTALLFOLDER" Guid="5900CC35-979F-4B97-8F81-ABCEAA852DEA" Win64='yes'> |
537 |
<File Id="fil83B53674BB5E73BBFB953E282428CB01" KeyPath="yes" Source=".\packages\ODA\PlotSettingsValidator_19.12_11.tx" /> |
538 |
</Component> |
539 |
<Component Id="cmp848D2B96BA1AF1BD1401ECC3FB14F3E4" Directory="INSTALLFOLDER" Guid="5D83CB55-308F-4A57-A0E5-2DEDADC5DB0A" Win64='yes'> |
540 |
<File Id="filD22070D9C25B43262B5B4AF76C36664B" KeyPath="yes" Source=".\packages\ODA\PlotStyleServices_19.12_11.tx" /> |
541 |
</Component> |
542 |
<Component Id="cmp85BA5CE4729389EBC790281BE5AEF143" Directory="INSTALLFOLDER" Guid="645D2715-89EA-4067-BEEB-3379ECF69E21" Win64='yes'> |
543 |
<File Id="filF199F00146C4C3059ECE84C1EFA776F1" KeyPath="yes" Source=".\packages\ODA\RasterProcessor_19.12_11.tx" /> |
544 |
</Component> |
545 |
<Component Id="cmp4EAEA328C99EBF4BA7593391D0D618A8" Directory="INSTALLFOLDER" Guid="1020C513-2BD6-4A5A-9043-4E7CD66EA303" Win64='yes'> |
546 |
<File Id="fil1103C1C9AA626EE6BB9B285949A479A9" KeyPath="yes" Source=".\packages\ODA\RcsFileServices_19.12_11.tx" /> |
547 |
</Component> |
548 |
<Component Id="cmp265D038443313DA22E4FAC81152E0864" Directory="INSTALLFOLDER" Guid="AB120FA9-AFD2-4F3B-9956-10874657FC65" Win64='yes'> |
549 |
<File Id="fil0EE9725840220DA5A161112DC20B67C5" KeyPath="yes" Source=".\packages\ODA\RecomputeDimBlock_19.12_11.tx" /> |
550 |
</Component> |
551 |
<Component Id="cmpBA4D83836E8E69712B8011CB4BACAC3B" Directory="INSTALLFOLDER" Guid="D2CB13FE-905D-42CE-8740-6FBFD0B11F69" Win64='yes'> |
552 |
<File Id="fil562FAE278F3EB7C13A79304A733B0A22" KeyPath="yes" Source=".\packages\ODA\RText_19.12_11.tx" /> |
553 |
</Component> |
554 |
<Component Id="cmp3BFAB34E2A47F450228BEE378F876C01" Directory="INSTALLFOLDER" Guid="DC0DDC2C-8792-47D2-ADA9-C6558C7514AF" Win64='yes'> |
555 |
<File Id="filDD0D5B41A82A1FA4235282D636C28D99" KeyPath="yes" Source=".\packages\ODA\RxRasterServices_19.12_11.tx" /> |
556 |
</Component> |
557 |
<Component Id="cmp89AAC717294BDD6C2BC45AA8AB3CA062" Directory="INSTALLFOLDER" Guid="9DD67764-0F6D-4A41-B331-95309D33D927" Win64='yes'> |
558 |
<File Id="fil9FD2642D527E7298CBDF82593756578C" KeyPath="yes" Source=".\packages\ODA\TAcisDb_19.12_11.tx" /> |
559 |
</Component> |
560 |
<Component Id="cmp8D4D8DBFBAAA670A5305822E285A8EF7" Directory="INSTALLFOLDER" Guid="4C0EB80D-937D-47A5-905B-1D4ECBD3CBB9" Win64='yes'> |
561 |
<File Id="filF276BBFF05DA5B4D3496E7FB9E970C4B" KeyPath="yes" Source=".\packages\ODA\TD_3DSolidHistory_19.12_11.tx" /> |
562 |
</Component> |
563 |
<Component Id="cmp9CFB64600F27F8E4072A12CA17E00637" Directory="INSTALLFOLDER" Guid="718AC056-80DF-4AD2-B02A-8487781FF0C3" Win64='yes'> |
564 |
<File Id="fil46D0DBD1002D945646F413A1ED5C92F5" KeyPath="yes" Source=".\packages\ODA\TD_BrepBuilderFiller_19.12_11.tx" /> |
565 |
</Component> |
566 |
<Component Id="cmpB9F3876DD6FE864B3EE5E7D75F70D312" Directory="INSTALLFOLDER" Guid="B1029C91-B1A5-4877-B35E-F0F06E13EB46" Win64='yes'> |
567 |
<File Id="fil146A53F10CA6E6B31D326C209F30F120" KeyPath="yes" Source=".\packages\ODA\TD_DbJoinEntityPE_19.12_11.tx" /> |
568 |
</Component> |
569 |
<Component Id="cmp840E51E255C65EB5ED126B46262B0BF5" Directory="INSTALLFOLDER" Guid="8364318A-C1C6-4797-8AC3-74AC0C120F03" Win64='yes'> |
570 |
<File Id="fil78B114AB46BEFF038CAE7167A87AF3D0" KeyPath="yes" Source=".\packages\ODA\TD_FtFontEngine_19.12_11.tx" /> |
571 |
</Component> |
572 |
<Component Id="cmp1CC09E95C7CD6F3FA69A050F3E4532B7" Directory="INSTALLFOLDER" Guid="41F26CD5-BEC2-4A65-9F75-1A4CD5ADF0D3" Win64='yes'> |
573 |
<File Id="filA91AC4CDCBF6309C90646F46070E6806" KeyPath="yes" Source=".\packages\ODA\TD_SwigCore_19.12_11.dll" /> |
574 |
</Component> |
575 |
<Component Id="cmpF66D264BC0CAEC7A397824181ABCBE86" Directory="INSTALLFOLDER" Guid="6321E3BD-7894-4013-8DDF-18485AB67EFC" Win64='yes'> |
576 |
<File Id="fil7C4A82EA6A9F939CA42309102F6E2FA2" KeyPath="yes" Source=".\packages\ODA\TD_SwigDb_19.12_11.dll" /> |
577 |
</Component> |
578 |
<Component Id="cmp3C8E76EE0637D4530346B4A7D5248B62" Directory="INSTALLFOLDER" Guid="CB2EA757-8756-4636-92C2-FB643F75C92D" Win64='yes'> |
579 |
<File Id="filBC00B9F2FFFF68F1F7F76CC52F21A3D2" KeyPath="yes" Source=".\packages\ODA\TD_TfCore_19.12_11.tx" /> |
580 |
</Component> |
581 |
<Component Id="cmp2B4E83D79DD24A512032FBA14FC2FC1B" Directory="INSTALLFOLDER" Guid="B3D880BB-F8F9-46D7-94B2-8429B9770B98" Win64='yes'> |
582 |
<File Id="fil98D102DF050FA2C1AD4EAF8630D66AC0" KeyPath="yes" Source=".\packages\ODA\TD_Tf_19.12_11.tx" /> |
583 |
</Component> |
584 |
<Component Id="cmp9EDF17E5178ED52862A95CA5FCF6DDA4" Directory="INSTALLFOLDER" Guid="D2BD8A0B-16E7-4C45-A614-A33D21C90771" Win64='yes'> |
585 |
<File Id="fil468A80FD4FA7FADD25F838878AB359DD" KeyPath="yes" Source=".\packages\ODA\TD_ThreejsJSONExport_19.12_11.tx" /> |
586 |
</Component> |
587 |
<Component Id="cmp9B13F2466A43A59AFA0E978AEA63341B" Directory="INSTALLFOLDER" Guid="8699FCEB-204C-4EF6-A0AB-E7FCF8AF478C" Win64='yes'> |
588 |
<File Id="fil1BFEA79910AC2FBFAB11DBD4BBE674D0" KeyPath="yes" Source=".\packages\ODA\TD_Zlib.dll" /> |
589 |
</Component> |
590 |
<Component Id="cmp0E6E018207B2F881B03ADB62D5F41DE0" Directory="INSTALLFOLDER" Guid="74488AE6-49DA-43C3-A0F0-C611B7AF76B9" Win64='yes'> |
591 |
<File Id="fil246EAC56A66DA1A8731ABC63C332FD0F" KeyPath="yes" Source=".\packages\ODA\TG_Db_19.12_11.tx" /> |
592 |
</Component> |
593 |
<Component Id="cmpD03ACFEC301326D7685333192CFAA038" Directory="INSTALLFOLDER" Guid="ED241D90-0F62-4C26-9514-C9EE269FE0BF" Win64='yes'> |
594 |
<File Id="fil938FA384D856D32C161868ABEB530B37" KeyPath="yes" Source=".\packages\ODA\TG_Dgn7IO_19.12_11.tx" /> |
595 |
</Component> |
596 |
<Component Id="cmp7E87BFF8390813589BFBF30D82A4B9FA" Directory="INSTALLFOLDER" Guid="BDE51B2A-0422-4F58-8F9F-22F39FCD3AD4" Win64='yes'> |
597 |
<File Id="fil889938374CE4D9BBC9A03788DE0DBC37" KeyPath="yes" Source=".\packages\ODA\TG_DwgDb_19.12_11.tx" /> |
598 |
</Component> |
599 |
<Component Id="cmpCC6FFA75D9961DB43494CC9716B280A7" Directory="INSTALLFOLDER" Guid="C054A255-DC6F-4B87-A48D-0EA25CA942AB" Win64='yes'> |
600 |
<File Id="filA6DEBB63D8AACE69FF70D592BE37DE18" KeyPath="yes" Source=".\packages\ODA\TG_ModelerGeometry_19.12_11.tx" /> |
601 |
</Component> |
602 |
<Component Id="cmp90F1C0B1A66E22E53DB8FF7B5DDD4FE5" Directory="INSTALLFOLDER" Guid="825408AF-676D-407E-A0C5-47DC2C455A31" Win64='yes'> |
603 |
<File Id="filAF19400FE34F44C97343484DCC91BBA0" KeyPath="yes" Source=".\packages\ODA\TG_SwigDb_19.12_11.dll" /> |
604 |
</Component> |
605 |
<Component Id="cmpE9DCB133C0EE5BF306BE2F6A3C036BA8" Directory="INSTALLFOLDER" Guid="2A51FBC4-3055-43A8-9A0F-B2FC6E1CA124" Win64='yes'> |
606 |
<File Id="fil28E487CC26BA494CFBC43963ADFF66FD" KeyPath="yes" Source=".\packages\ODA\ThreadPool_19.12_11.tx" /> |
607 |
</Component> |
608 |
<Component Id="cmpED2F614737A44713C56C57907620EB63" Directory="INSTALLFOLDER" Guid="AB437F40-3B51-4BE6-858A-B023FFDA2737" Win64='yes'> |
609 |
<File Id="fil1FC331B8F08B5F84EA8ED4FDEA75A5ED" KeyPath="yes" Source=".\packages\ODA\TRseDb_19.12_11.tx" /> |
610 |
</Component> |
611 |
<Component Id="cmpA78FF16FDBEBCC61819C235752FED4EB" Directory="INSTALLFOLDER" Guid="E98F261A-596A-45C5-A59B-4236A68EAB01" Win64='yes'> |
612 |
<File Id="fil9E0224C3D1DB2C78BB6F56F79B1BBB5D" KeyPath="yes" Source=".\packages\ODA\WipeOut_19.12_11.tx" /> |
613 |
</Component> |
614 |
<Component Id="cmpA8E411F92BD54821B9A3CEF8E01BBE63" Directory="MyAppDataFolder" Guid="6BF0D3C5-0684-4E7D-BC53-4CE092A48FFE" Win64='yes'> |
615 |
<File Id="fil49E6FDC6BDFC49A5AB05A71FB2D3A5AE" KeyPath="yes" Source=".\KCOM\MARKUS.ini" /> |
616 |
</Component> |
617 |
</ComponentGroup> |
618 |
</Fragment> |
619 |
</Wix> |