GLSViewer.dproj 63 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322
  1. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <ProjectGuid>{4BFAF366-F5E2-4DFD-BC73-A9DB12668E23}</ProjectGuid>
  4. <MainSource>GLSViewer.dpr</MainSource>
  5. <Base>True</Base>
  6. <Config Condition="'$(Config)'==''">Debug</Config>
  7. <TargetedPlatforms>3</TargetedPlatforms>
  8. <AppType>Application</AppType>
  9. <FrameworkType>VCL</FrameworkType>
  10. <ProjectVersion>19.3</ProjectVersion>
  11. <Platform Condition="'$(Platform)'==''">Win32</Platform>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
  14. <Base>true</Base>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
  17. <Base_Win32>true</Base_Win32>
  18. <CfgParent>Base</CfgParent>
  19. <Base>true</Base>
  20. </PropertyGroup>
  21. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
  22. <Base_Win64>true</Base_Win64>
  23. <CfgParent>Base</CfgParent>
  24. <Base>true</Base>
  25. </PropertyGroup>
  26. <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''">
  27. <Cfg_1>true</Cfg_1>
  28. <CfgParent>Base</CfgParent>
  29. <Base>true</Base>
  30. </PropertyGroup>
  31. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win64)'!=''">
  32. <Cfg_1_Win64>true</Cfg_1_Win64>
  33. <CfgParent>Cfg_1</CfgParent>
  34. <Cfg_1>true</Cfg_1>
  35. <Base>true</Base>
  36. </PropertyGroup>
  37. <PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''">
  38. <Cfg_2>true</Cfg_2>
  39. <CfgParent>Base</CfgParent>
  40. <Base>true</Base>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''">
  43. <Cfg_2_Win32>true</Cfg_2_Win32>
  44. <CfgParent>Cfg_2</CfgParent>
  45. <Cfg_2>true</Cfg_2>
  46. <Base>true</Base>
  47. </PropertyGroup>
  48. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win64)'!=''">
  49. <Cfg_2_Win64>true</Cfg_2_Win64>
  50. <CfgParent>Cfg_2</CfgParent>
  51. <Cfg_2>true</Cfg_2>
  52. <Base>true</Base>
  53. </PropertyGroup>
  54. <PropertyGroup Condition="'$(Base)'!=''">
  55. <DCC_Namespace>Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;System;Xml;Data;Datasnap;Web;Soap;Winapi;System.Win;$(DCC_Namespace)</DCC_Namespace>
  56. <VerInfo_Locale>1049</VerInfo_Locale>
  57. <DCC_ImageBase>00400000</DCC_ImageBase>
  58. <DCC_K>false</DCC_K>
  59. <DCC_S>false</DCC_S>
  60. <DCC_N>false</DCC_N>
  61. <VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName=</VerInfo_Keys>
  62. <DCC_E>false</DCC_E>
  63. <DCC_F>false</DCC_F>
  64. <SanitizedProjectName>GLSViewer</SanitizedProjectName>
  65. </PropertyGroup>
  66. <PropertyGroup Condition="'$(Base_Win32)'!=''">
  67. <UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
  68. <UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
  69. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  70. <DCC_Namespace>Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
  71. <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
  72. <VerInfo_Locale>1033</VerInfo_Locale>
  73. <VerInfo_Keys>CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(ModuleName);FileDescription=$(ModuleName);ProductName=$(ModuleName)</VerInfo_Keys>
  74. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  75. </PropertyGroup>
  76. <PropertyGroup Condition="'$(Base_Win64)'!=''">
  77. <BT_BuildType>Debug</BT_BuildType>
  78. <UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
  79. <UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
  80. <VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
  81. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  82. <DCC_Namespace>Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
  83. <VerInfo_Locale>1033</VerInfo_Locale>
  84. <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
  85. </PropertyGroup>
  86. <PropertyGroup Condition="'$(Cfg_1)'!=''">
  87. <DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
  88. <DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
  89. <DCC_DebugInformation>0</DCC_DebugInformation>
  90. <DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
  91. </PropertyGroup>
  92. <PropertyGroup Condition="'$(Cfg_1_Win64)'!=''">
  93. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  94. <AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
  95. </PropertyGroup>
  96. <PropertyGroup Condition="'$(Cfg_2)'!=''">
  97. <DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
  98. <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
  99. <DCC_Optimize>false</DCC_Optimize>
  100. </PropertyGroup>
  101. <PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
  102. <BT_BuildType>Debug</BT_BuildType>
  103. <VerInfo_Build>125</VerInfo_Build>
  104. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  105. <VerInfo_AutoIncVersion>true</VerInfo_AutoIncVersion>
  106. <VerInfo_MinorVer>8</VerInfo_MinorVer>
  107. <VerInfo_Debug>true</VerInfo_Debug>
  108. <VerInfo_Locale>1033</VerInfo_Locale>
  109. <Icon_MainIcon>Resource\GLSViewer.ico</Icon_MainIcon>
  110. <VerInfo_Keys>CompanyName=;FileVersion=1.8.0.125;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.8.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName)</VerInfo_Keys>
  111. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  112. </PropertyGroup>
  113. <PropertyGroup Condition="'$(Cfg_2_Win64)'!=''">
  114. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  115. <AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
  116. </PropertyGroup>
  117. <ItemGroup>
  118. <DelphiCompile Include="$(MainSource)">
  119. <MainSource>MainSource</MainSource>
  120. </DelphiCompile>
  121. <DCCReference Include="Source\fGLForm.pas">
  122. <Form>GLForm</Form>
  123. </DCCReference>
  124. <DCCReference Include="Source\fGLDialog.pas">
  125. <Form>GLDialog</Form>
  126. </DCCReference>
  127. <DCCReference Include="Source\fMain.pas">
  128. <Form>MainForm</Form>
  129. </DCCReference>
  130. <DCCReference Include="Source\uGlobals.pas"/>
  131. <DCCReference Include="Source\uSettings.pas"/>
  132. <DCCReference Include="Source\dGLSViewer.pas">
  133. <Form>dmGLSViewer</Form>
  134. <DesignClass>TDataModule</DesignClass>
  135. </DCCReference>
  136. <DCCReference Include="Source\fGLAbout.pas">
  137. <Form>GLAbout</Form>
  138. </DCCReference>
  139. <DCCReference Include="Source\fGLOptions.pas">
  140. <Form>GLOptions</Form>
  141. </DCCReference>
  142. <DCCReference Include="Source\GnuGettext.pas"/>
  143. <BuildConfiguration Include="Base">
  144. <Key>Base</Key>
  145. </BuildConfiguration>
  146. <BuildConfiguration Include="Release">
  147. <Key>Cfg_1</Key>
  148. <CfgParent>Base</CfgParent>
  149. </BuildConfiguration>
  150. <BuildConfiguration Include="Debug">
  151. <Key>Cfg_2</Key>
  152. <CfgParent>Base</CfgParent>
  153. </BuildConfiguration>
  154. </ItemGroup>
  155. <ProjectExtensions>
  156. <Borland.Personality>Delphi.Personality.12</Borland.Personality>
  157. <Borland.ProjectType/>
  158. <BorlandProject>
  159. <Delphi.Personality>
  160. <Source>
  161. <Source Name="MainSource">GLSViewer.dpr</Source>
  162. </Source>
  163. <Excluded_Packages>
  164. <Excluded_Packages Name="D:\Geoblock\bpl\GBComps.bpl">Geoblock - Components</Excluded_Packages>
  165. <Excluded_Packages Name="$(BDSBIN)\bcboffice2k250.bpl">Embarcadero C++Builder Office 2000 Servers Package</Excluded_Packages>
  166. <Excluded_Packages Name="$(BDSBIN)\bcbofficexp250.bpl">Embarcadero C++Builder Office XP Servers Package</Excluded_Packages>
  167. <Excluded_Packages Name="$(BDSBIN)\dcloffice2k250.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
  168. <Excluded_Packages Name="$(BDSBIN)\dclofficexp250.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
  169. </Excluded_Packages>
  170. </Delphi.Personality>
  171. <Platforms>
  172. <Platform value="Win32">True</Platform>
  173. <Platform value="Win64">True</Platform>
  174. </Platforms>
  175. <Deployment Version="3">
  176. <DeployFile LocalName="GLSViewer.exe" Configuration="Debug" Class="ProjectOutput">
  177. <Platform Name="Win32">
  178. <RemoteName>GLSViewer.exe</RemoteName>
  179. <Overwrite>true</Overwrite>
  180. </Platform>
  181. </DeployFile>
  182. <DeployClass Name="AdditionalDebugSymbols">
  183. <Platform Name="iOSSimulator">
  184. <Operation>1</Operation>
  185. </Platform>
  186. <Platform Name="OSX32">
  187. <RemoteDir>Contents\MacOS</RemoteDir>
  188. <Operation>1</Operation>
  189. </Platform>
  190. <Platform Name="Win32">
  191. <Operation>0</Operation>
  192. </Platform>
  193. </DeployClass>
  194. <DeployClass Name="AndroidClasses">
  195. <Platform Name="Android">
  196. <RemoteDir>classes</RemoteDir>
  197. <Operation>64</Operation>
  198. </Platform>
  199. <Platform Name="Android64">
  200. <RemoteDir>classes</RemoteDir>
  201. <Operation>64</Operation>
  202. </Platform>
  203. </DeployClass>
  204. <DeployClass Name="AndroidClassesDexFile">
  205. <Platform Name="Android">
  206. <RemoteDir>classes</RemoteDir>
  207. <Operation>1</Operation>
  208. </Platform>
  209. </DeployClass>
  210. <DeployClass Name="AndroidFileProvider">
  211. <Platform Name="Android">
  212. <RemoteDir>res\xml</RemoteDir>
  213. <Operation>1</Operation>
  214. </Platform>
  215. <Platform Name="Android64">
  216. <RemoteDir>res\xml</RemoteDir>
  217. <Operation>1</Operation>
  218. </Platform>
  219. </DeployClass>
  220. <DeployClass Name="AndroidGDBServer">
  221. <Platform Name="Android">
  222. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  223. <Operation>1</Operation>
  224. </Platform>
  225. </DeployClass>
  226. <DeployClass Name="AndroidLibnativeArmeabiFile">
  227. <Platform Name="Android">
  228. <RemoteDir>library\lib\armeabi</RemoteDir>
  229. <Operation>1</Operation>
  230. </Platform>
  231. <Platform Name="Android64">
  232. <RemoteDir>library\lib\armeabi</RemoteDir>
  233. <Operation>1</Operation>
  234. </Platform>
  235. </DeployClass>
  236. <DeployClass Name="AndroidLibnativeArmeabiv7aFile">
  237. <Platform Name="Android64">
  238. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  239. <Operation>1</Operation>
  240. </Platform>
  241. </DeployClass>
  242. <DeployClass Name="AndroidLibnativeMipsFile">
  243. <Platform Name="Android">
  244. <RemoteDir>library\lib\mips</RemoteDir>
  245. <Operation>1</Operation>
  246. </Platform>
  247. <Platform Name="Android64">
  248. <RemoteDir>library\lib\mips</RemoteDir>
  249. <Operation>1</Operation>
  250. </Platform>
  251. </DeployClass>
  252. <DeployClass Name="AndroidLibnativeX86File"/>
  253. <DeployClass Name="AndroidServiceOutput">
  254. <Platform Name="Android">
  255. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  256. <Operation>1</Operation>
  257. </Platform>
  258. <Platform Name="Android64">
  259. <RemoteDir>library\lib\arm64-v8a</RemoteDir>
  260. <Operation>1</Operation>
  261. </Platform>
  262. </DeployClass>
  263. <DeployClass Name="AndroidServiceOutput_Android32">
  264. <Platform Name="Android64">
  265. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  266. <Operation>1</Operation>
  267. </Platform>
  268. </DeployClass>
  269. <DeployClass Name="AndroidSplashImageDef">
  270. <Platform Name="Android">
  271. <RemoteDir>res\drawable</RemoteDir>
  272. <Operation>1</Operation>
  273. </Platform>
  274. <Platform Name="Android64">
  275. <RemoteDir>res\drawable</RemoteDir>
  276. <Operation>1</Operation>
  277. </Platform>
  278. </DeployClass>
  279. <DeployClass Name="AndroidSplashStyles">
  280. <Platform Name="Android">
  281. <RemoteDir>res\values</RemoteDir>
  282. <Operation>1</Operation>
  283. </Platform>
  284. <Platform Name="Android64">
  285. <RemoteDir>res\values</RemoteDir>
  286. <Operation>1</Operation>
  287. </Platform>
  288. </DeployClass>
  289. <DeployClass Name="AndroidSplashStylesV21">
  290. <Platform Name="Android">
  291. <RemoteDir>res\values-v21</RemoteDir>
  292. <Operation>1</Operation>
  293. </Platform>
  294. <Platform Name="Android64">
  295. <RemoteDir>res\values-v21</RemoteDir>
  296. <Operation>1</Operation>
  297. </Platform>
  298. </DeployClass>
  299. <DeployClass Name="Android_Colors">
  300. <Platform Name="Android">
  301. <RemoteDir>res\values</RemoteDir>
  302. <Operation>1</Operation>
  303. </Platform>
  304. <Platform Name="Android64">
  305. <RemoteDir>res\values</RemoteDir>
  306. <Operation>1</Operation>
  307. </Platform>
  308. </DeployClass>
  309. <DeployClass Name="Android_DefaultAppIcon">
  310. <Platform Name="Android">
  311. <RemoteDir>res\drawable</RemoteDir>
  312. <Operation>1</Operation>
  313. </Platform>
  314. <Platform Name="Android64">
  315. <RemoteDir>res\drawable</RemoteDir>
  316. <Operation>1</Operation>
  317. </Platform>
  318. </DeployClass>
  319. <DeployClass Name="Android_LauncherIcon144">
  320. <Platform Name="Android">
  321. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  322. <Operation>1</Operation>
  323. </Platform>
  324. <Platform Name="Android64">
  325. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  326. <Operation>1</Operation>
  327. </Platform>
  328. </DeployClass>
  329. <DeployClass Name="Android_LauncherIcon192">
  330. <Platform Name="Android">
  331. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  332. <Operation>1</Operation>
  333. </Platform>
  334. <Platform Name="Android64">
  335. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  336. <Operation>1</Operation>
  337. </Platform>
  338. </DeployClass>
  339. <DeployClass Name="Android_LauncherIcon36">
  340. <Platform Name="Android">
  341. <RemoteDir>res\drawable-ldpi</RemoteDir>
  342. <Operation>1</Operation>
  343. </Platform>
  344. <Platform Name="Android64">
  345. <RemoteDir>res\drawable-ldpi</RemoteDir>
  346. <Operation>1</Operation>
  347. </Platform>
  348. </DeployClass>
  349. <DeployClass Name="Android_LauncherIcon48">
  350. <Platform Name="Android">
  351. <RemoteDir>res\drawable-mdpi</RemoteDir>
  352. <Operation>1</Operation>
  353. </Platform>
  354. <Platform Name="Android64">
  355. <RemoteDir>res\drawable-mdpi</RemoteDir>
  356. <Operation>1</Operation>
  357. </Platform>
  358. </DeployClass>
  359. <DeployClass Name="Android_LauncherIcon72">
  360. <Platform Name="Android">
  361. <RemoteDir>res\drawable-hdpi</RemoteDir>
  362. <Operation>1</Operation>
  363. </Platform>
  364. <Platform Name="Android64">
  365. <RemoteDir>res\drawable-hdpi</RemoteDir>
  366. <Operation>1</Operation>
  367. </Platform>
  368. </DeployClass>
  369. <DeployClass Name="Android_LauncherIcon96">
  370. <Platform Name="Android">
  371. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  372. <Operation>1</Operation>
  373. </Platform>
  374. <Platform Name="Android64">
  375. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  376. <Operation>1</Operation>
  377. </Platform>
  378. </DeployClass>
  379. <DeployClass Name="Android_NotificationIcon24">
  380. <Platform Name="Android">
  381. <RemoteDir>res\drawable-mdpi</RemoteDir>
  382. <Operation>1</Operation>
  383. </Platform>
  384. <Platform Name="Android64">
  385. <RemoteDir>res\drawable-mdpi</RemoteDir>
  386. <Operation>1</Operation>
  387. </Platform>
  388. </DeployClass>
  389. <DeployClass Name="Android_NotificationIcon36">
  390. <Platform Name="Android">
  391. <RemoteDir>res\drawable-hdpi</RemoteDir>
  392. <Operation>1</Operation>
  393. </Platform>
  394. <Platform Name="Android64">
  395. <RemoteDir>res\drawable-hdpi</RemoteDir>
  396. <Operation>1</Operation>
  397. </Platform>
  398. </DeployClass>
  399. <DeployClass Name="Android_NotificationIcon48">
  400. <Platform Name="Android">
  401. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  402. <Operation>1</Operation>
  403. </Platform>
  404. <Platform Name="Android64">
  405. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  406. <Operation>1</Operation>
  407. </Platform>
  408. </DeployClass>
  409. <DeployClass Name="Android_NotificationIcon72">
  410. <Platform Name="Android">
  411. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  412. <Operation>1</Operation>
  413. </Platform>
  414. <Platform Name="Android64">
  415. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  416. <Operation>1</Operation>
  417. </Platform>
  418. </DeployClass>
  419. <DeployClass Name="Android_NotificationIcon96">
  420. <Platform Name="Android">
  421. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  422. <Operation>1</Operation>
  423. </Platform>
  424. <Platform Name="Android64">
  425. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  426. <Operation>1</Operation>
  427. </Platform>
  428. </DeployClass>
  429. <DeployClass Name="Android_SplashImage426">
  430. <Platform Name="Android">
  431. <RemoteDir>res\drawable-small</RemoteDir>
  432. <Operation>1</Operation>
  433. </Platform>
  434. <Platform Name="Android64">
  435. <RemoteDir>res\drawable-small</RemoteDir>
  436. <Operation>1</Operation>
  437. </Platform>
  438. </DeployClass>
  439. <DeployClass Name="Android_SplashImage470">
  440. <Platform Name="Android">
  441. <RemoteDir>res\drawable-normal</RemoteDir>
  442. <Operation>1</Operation>
  443. </Platform>
  444. <Platform Name="Android64">
  445. <RemoteDir>res\drawable-normal</RemoteDir>
  446. <Operation>1</Operation>
  447. </Platform>
  448. </DeployClass>
  449. <DeployClass Name="Android_SplashImage640">
  450. <Platform Name="Android">
  451. <RemoteDir>res\drawable-large</RemoteDir>
  452. <Operation>1</Operation>
  453. </Platform>
  454. <Platform Name="Android64">
  455. <RemoteDir>res\drawable-large</RemoteDir>
  456. <Operation>1</Operation>
  457. </Platform>
  458. </DeployClass>
  459. <DeployClass Name="Android_SplashImage960">
  460. <Platform Name="Android">
  461. <RemoteDir>res\drawable-xlarge</RemoteDir>
  462. <Operation>1</Operation>
  463. </Platform>
  464. <Platform Name="Android64">
  465. <RemoteDir>res\drawable-xlarge</RemoteDir>
  466. <Operation>1</Operation>
  467. </Platform>
  468. </DeployClass>
  469. <DeployClass Name="Android_Strings">
  470. <Platform Name="Android">
  471. <RemoteDir>res\values</RemoteDir>
  472. <Operation>1</Operation>
  473. </Platform>
  474. <Platform Name="Android64">
  475. <RemoteDir>res\values</RemoteDir>
  476. <Operation>1</Operation>
  477. </Platform>
  478. </DeployClass>
  479. <DeployClass Name="DebugSymbols">
  480. <Platform Name="iOSSimulator">
  481. <Operation>1</Operation>
  482. </Platform>
  483. <Platform Name="OSX32">
  484. <RemoteDir>Contents\MacOS</RemoteDir>
  485. <Operation>1</Operation>
  486. </Platform>
  487. <Platform Name="Win32">
  488. <Operation>0</Operation>
  489. </Platform>
  490. </DeployClass>
  491. <DeployClass Name="DependencyFramework">
  492. <Platform Name="OSX32">
  493. <RemoteDir>Contents\MacOS</RemoteDir>
  494. <Operation>1</Operation>
  495. <Extensions>.framework</Extensions>
  496. </Platform>
  497. <Platform Name="OSX64">
  498. <RemoteDir>Contents\MacOS</RemoteDir>
  499. <Operation>1</Operation>
  500. <Extensions>.framework</Extensions>
  501. </Platform>
  502. <Platform Name="OSXARM64">
  503. <RemoteDir>Contents\MacOS</RemoteDir>
  504. <Operation>1</Operation>
  505. <Extensions>.framework</Extensions>
  506. </Platform>
  507. <Platform Name="Win32">
  508. <Operation>0</Operation>
  509. </Platform>
  510. </DeployClass>
  511. <DeployClass Name="DependencyModule">
  512. <Platform Name="iOSDevice32">
  513. <Operation>1</Operation>
  514. <Extensions>.dylib</Extensions>
  515. </Platform>
  516. <Platform Name="iOSDevice64">
  517. <Operation>1</Operation>
  518. <Extensions>.dylib</Extensions>
  519. </Platform>
  520. <Platform Name="iOSSimulator">
  521. <Operation>1</Operation>
  522. <Extensions>.dylib</Extensions>
  523. </Platform>
  524. <Platform Name="OSX32">
  525. <RemoteDir>Contents\MacOS</RemoteDir>
  526. <Operation>1</Operation>
  527. <Extensions>.dylib</Extensions>
  528. </Platform>
  529. <Platform Name="OSX64">
  530. <RemoteDir>Contents\MacOS</RemoteDir>
  531. <Operation>1</Operation>
  532. <Extensions>.dylib</Extensions>
  533. </Platform>
  534. <Platform Name="OSXARM64">
  535. <RemoteDir>Contents\MacOS</RemoteDir>
  536. <Operation>1</Operation>
  537. <Extensions>.dylib</Extensions>
  538. </Platform>
  539. <Platform Name="Win32">
  540. <Operation>0</Operation>
  541. <Extensions>.dll;.bpl</Extensions>
  542. </Platform>
  543. </DeployClass>
  544. <DeployClass Required="true" Name="DependencyPackage">
  545. <Platform Name="iOSDevice32">
  546. <Operation>1</Operation>
  547. <Extensions>.dylib</Extensions>
  548. </Platform>
  549. <Platform Name="iOSDevice64">
  550. <Operation>1</Operation>
  551. <Extensions>.dylib</Extensions>
  552. </Platform>
  553. <Platform Name="iOSSimulator">
  554. <Operation>1</Operation>
  555. <Extensions>.dylib</Extensions>
  556. </Platform>
  557. <Platform Name="OSX32">
  558. <RemoteDir>Contents\MacOS</RemoteDir>
  559. <Operation>1</Operation>
  560. <Extensions>.dylib</Extensions>
  561. </Platform>
  562. <Platform Name="OSX64">
  563. <RemoteDir>Contents\MacOS</RemoteDir>
  564. <Operation>1</Operation>
  565. <Extensions>.dylib</Extensions>
  566. </Platform>
  567. <Platform Name="OSXARM64">
  568. <RemoteDir>Contents\MacOS</RemoteDir>
  569. <Operation>1</Operation>
  570. <Extensions>.dylib</Extensions>
  571. </Platform>
  572. <Platform Name="Win32">
  573. <Operation>0</Operation>
  574. <Extensions>.bpl</Extensions>
  575. </Platform>
  576. </DeployClass>
  577. <DeployClass Name="File">
  578. <Platform Name="Android">
  579. <Operation>0</Operation>
  580. </Platform>
  581. <Platform Name="Android64">
  582. <Operation>0</Operation>
  583. </Platform>
  584. <Platform Name="iOSDevice32">
  585. <Operation>0</Operation>
  586. </Platform>
  587. <Platform Name="iOSDevice64">
  588. <Operation>0</Operation>
  589. </Platform>
  590. <Platform Name="iOSSimulator">
  591. <Operation>0</Operation>
  592. </Platform>
  593. <Platform Name="OSX32">
  594. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  595. <Operation>0</Operation>
  596. </Platform>
  597. <Platform Name="OSX64">
  598. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  599. <Operation>0</Operation>
  600. </Platform>
  601. <Platform Name="OSXARM64">
  602. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  603. <Operation>0</Operation>
  604. </Platform>
  605. <Platform Name="Win32">
  606. <Operation>0</Operation>
  607. </Platform>
  608. </DeployClass>
  609. <DeployClass Name="iOS_AppStore1024">
  610. <Platform Name="iOSDevice64">
  611. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  612. <Operation>1</Operation>
  613. </Platform>
  614. </DeployClass>
  615. <DeployClass Name="iPad_AppIcon152">
  616. <Platform Name="iOSDevice64">
  617. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  618. <Operation>1</Operation>
  619. </Platform>
  620. <Platform Name="iOSSimulator">
  621. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  622. <Operation>1</Operation>
  623. </Platform>
  624. </DeployClass>
  625. <DeployClass Name="iPad_AppIcon167">
  626. <Platform Name="iOSDevice64">
  627. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  628. <Operation>1</Operation>
  629. </Platform>
  630. <Platform Name="iOSSimulator">
  631. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  632. <Operation>1</Operation>
  633. </Platform>
  634. </DeployClass>
  635. <DeployClass Name="iPad_Launch1024">
  636. <Platform Name="iOSDevice32">
  637. <Operation>1</Operation>
  638. </Platform>
  639. <Platform Name="iOSDevice64">
  640. <Operation>1</Operation>
  641. </Platform>
  642. <Platform Name="iOSSimulator">
  643. <Operation>1</Operation>
  644. </Platform>
  645. </DeployClass>
  646. <DeployClass Name="iPad_Launch1024x768">
  647. <Platform Name="iOSDevice32">
  648. <Operation>1</Operation>
  649. </Platform>
  650. <Platform Name="iOSDevice64">
  651. <Operation>1</Operation>
  652. </Platform>
  653. <Platform Name="iOSSimulator">
  654. <Operation>1</Operation>
  655. </Platform>
  656. </DeployClass>
  657. <DeployClass Name="iPad_Launch1536">
  658. <Platform Name="iOSDevice32">
  659. <Operation>1</Operation>
  660. </Platform>
  661. <Platform Name="iOSDevice64">
  662. <Operation>1</Operation>
  663. </Platform>
  664. <Platform Name="iOSSimulator">
  665. <Operation>1</Operation>
  666. </Platform>
  667. </DeployClass>
  668. <DeployClass Name="iPad_Launch1536x2048">
  669. <Platform Name="iOSDevice32">
  670. <Operation>1</Operation>
  671. </Platform>
  672. <Platform Name="iOSDevice64">
  673. <Operation>1</Operation>
  674. </Platform>
  675. <Platform Name="iOSSimulator">
  676. <Operation>1</Operation>
  677. </Platform>
  678. </DeployClass>
  679. <DeployClass Name="iPad_Launch1668">
  680. <Platform Name="iOSDevice32">
  681. <Operation>1</Operation>
  682. </Platform>
  683. <Platform Name="iOSDevice64">
  684. <Operation>1</Operation>
  685. </Platform>
  686. <Platform Name="iOSSimulator">
  687. <Operation>1</Operation>
  688. </Platform>
  689. </DeployClass>
  690. <DeployClass Name="iPad_Launch1668x2388">
  691. <Platform Name="iOSDevice32">
  692. <Operation>1</Operation>
  693. </Platform>
  694. <Platform Name="iOSDevice64">
  695. <Operation>1</Operation>
  696. </Platform>
  697. <Platform Name="iOSSimulator">
  698. <Operation>1</Operation>
  699. </Platform>
  700. </DeployClass>
  701. <DeployClass Name="iPad_Launch2048">
  702. <Platform Name="iOSDevice32">
  703. <Operation>1</Operation>
  704. </Platform>
  705. <Platform Name="iOSDevice64">
  706. <Operation>1</Operation>
  707. </Platform>
  708. <Platform Name="iOSSimulator">
  709. <Operation>1</Operation>
  710. </Platform>
  711. </DeployClass>
  712. <DeployClass Name="iPad_Launch2048x1536">
  713. <Platform Name="iOSDevice32">
  714. <Operation>1</Operation>
  715. </Platform>
  716. <Platform Name="iOSDevice64">
  717. <Operation>1</Operation>
  718. </Platform>
  719. <Platform Name="iOSSimulator">
  720. <Operation>1</Operation>
  721. </Platform>
  722. </DeployClass>
  723. <DeployClass Name="iPad_Launch2048x2732">
  724. <Platform Name="iOSDevice32">
  725. <Operation>1</Operation>
  726. </Platform>
  727. <Platform Name="iOSDevice64">
  728. <Operation>1</Operation>
  729. </Platform>
  730. <Platform Name="iOSSimulator">
  731. <Operation>1</Operation>
  732. </Platform>
  733. </DeployClass>
  734. <DeployClass Name="iPad_Launch2224">
  735. <Platform Name="iOSDevice32">
  736. <Operation>1</Operation>
  737. </Platform>
  738. <Platform Name="iOSDevice64">
  739. <Operation>1</Operation>
  740. </Platform>
  741. <Platform Name="iOSSimulator">
  742. <Operation>1</Operation>
  743. </Platform>
  744. </DeployClass>
  745. <DeployClass Name="iPad_Launch2388x1668">
  746. <Platform Name="iOSDevice32">
  747. <Operation>1</Operation>
  748. </Platform>
  749. <Platform Name="iOSDevice64">
  750. <Operation>1</Operation>
  751. </Platform>
  752. <Platform Name="iOSSimulator">
  753. <Operation>1</Operation>
  754. </Platform>
  755. </DeployClass>
  756. <DeployClass Name="iPad_Launch2732x2048">
  757. <Platform Name="iOSDevice32">
  758. <Operation>1</Operation>
  759. </Platform>
  760. <Platform Name="iOSDevice64">
  761. <Operation>1</Operation>
  762. </Platform>
  763. <Platform Name="iOSSimulator">
  764. <Operation>1</Operation>
  765. </Platform>
  766. </DeployClass>
  767. <DeployClass Name="iPad_Launch2x">
  768. <Platform Name="iOSDevice64">
  769. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  770. <Operation>1</Operation>
  771. </Platform>
  772. <Platform Name="iOSSimulator">
  773. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  774. <Operation>1</Operation>
  775. </Platform>
  776. </DeployClass>
  777. <DeployClass Name="iPad_Launch768">
  778. <Platform Name="iOSDevice32">
  779. <Operation>1</Operation>
  780. </Platform>
  781. <Platform Name="iOSDevice64">
  782. <Operation>1</Operation>
  783. </Platform>
  784. <Platform Name="iOSSimulator">
  785. <Operation>1</Operation>
  786. </Platform>
  787. </DeployClass>
  788. <DeployClass Name="iPad_Launch768x1024">
  789. <Platform Name="iOSDevice32">
  790. <Operation>1</Operation>
  791. </Platform>
  792. <Platform Name="iOSDevice64">
  793. <Operation>1</Operation>
  794. </Platform>
  795. <Platform Name="iOSSimulator">
  796. <Operation>1</Operation>
  797. </Platform>
  798. </DeployClass>
  799. <DeployClass Name="iPad_LaunchDark2x">
  800. <Platform Name="iOSDevice64">
  801. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  802. <Operation>1</Operation>
  803. </Platform>
  804. <Platform Name="iOSSimulator">
  805. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  806. <Operation>1</Operation>
  807. </Platform>
  808. </DeployClass>
  809. <DeployClass Name="iPad_Notification40">
  810. <Platform Name="iOSDevice64">
  811. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  812. <Operation>1</Operation>
  813. </Platform>
  814. <Platform Name="iOSSimulator">
  815. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  816. <Operation>1</Operation>
  817. </Platform>
  818. </DeployClass>
  819. <DeployClass Name="iPad_Setting58">
  820. <Platform Name="iOSDevice64">
  821. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  822. <Operation>1</Operation>
  823. </Platform>
  824. <Platform Name="iOSSimulator">
  825. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  826. <Operation>1</Operation>
  827. </Platform>
  828. </DeployClass>
  829. <DeployClass Name="iPad_SpotLight80">
  830. <Platform Name="iOSDevice64">
  831. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  832. <Operation>1</Operation>
  833. </Platform>
  834. <Platform Name="iOSSimulator">
  835. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  836. <Operation>1</Operation>
  837. </Platform>
  838. </DeployClass>
  839. <DeployClass Name="iPhone_AppIcon120">
  840. <Platform Name="iOSDevice64">
  841. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  842. <Operation>1</Operation>
  843. </Platform>
  844. <Platform Name="iOSSimulator">
  845. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  846. <Operation>1</Operation>
  847. </Platform>
  848. </DeployClass>
  849. <DeployClass Name="iPhone_AppIcon180">
  850. <Platform Name="iOSDevice64">
  851. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  852. <Operation>1</Operation>
  853. </Platform>
  854. <Platform Name="iOSSimulator">
  855. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  856. <Operation>1</Operation>
  857. </Platform>
  858. </DeployClass>
  859. <DeployClass Name="iPhone_Launch1125">
  860. <Platform Name="iOSDevice32">
  861. <Operation>1</Operation>
  862. </Platform>
  863. <Platform Name="iOSDevice64">
  864. <Operation>1</Operation>
  865. </Platform>
  866. <Platform Name="iOSSimulator">
  867. <Operation>1</Operation>
  868. </Platform>
  869. </DeployClass>
  870. <DeployClass Name="iPhone_Launch1136x640">
  871. <Platform Name="iOSDevice32">
  872. <Operation>1</Operation>
  873. </Platform>
  874. <Platform Name="iOSDevice64">
  875. <Operation>1</Operation>
  876. </Platform>
  877. <Platform Name="iOSSimulator">
  878. <Operation>1</Operation>
  879. </Platform>
  880. </DeployClass>
  881. <DeployClass Name="iPhone_Launch1242">
  882. <Platform Name="iOSDevice32">
  883. <Operation>1</Operation>
  884. </Platform>
  885. <Platform Name="iOSDevice64">
  886. <Operation>1</Operation>
  887. </Platform>
  888. <Platform Name="iOSSimulator">
  889. <Operation>1</Operation>
  890. </Platform>
  891. </DeployClass>
  892. <DeployClass Name="iPhone_Launch1242x2688">
  893. <Platform Name="iOSDevice32">
  894. <Operation>1</Operation>
  895. </Platform>
  896. <Platform Name="iOSDevice64">
  897. <Operation>1</Operation>
  898. </Platform>
  899. <Platform Name="iOSSimulator">
  900. <Operation>1</Operation>
  901. </Platform>
  902. </DeployClass>
  903. <DeployClass Name="iPhone_Launch1334">
  904. <Platform Name="iOSDevice32">
  905. <Operation>1</Operation>
  906. </Platform>
  907. <Platform Name="iOSDevice64">
  908. <Operation>1</Operation>
  909. </Platform>
  910. <Platform Name="iOSSimulator">
  911. <Operation>1</Operation>
  912. </Platform>
  913. </DeployClass>
  914. <DeployClass Name="iPhone_Launch1792">
  915. <Platform Name="iOSDevice32">
  916. <Operation>1</Operation>
  917. </Platform>
  918. <Platform Name="iOSDevice64">
  919. <Operation>1</Operation>
  920. </Platform>
  921. <Platform Name="iOSSimulator">
  922. <Operation>1</Operation>
  923. </Platform>
  924. </DeployClass>
  925. <DeployClass Name="iPhone_Launch2208">
  926. <Platform Name="iOSDevice32">
  927. <Operation>1</Operation>
  928. </Platform>
  929. <Platform Name="iOSDevice64">
  930. <Operation>1</Operation>
  931. </Platform>
  932. <Platform Name="iOSSimulator">
  933. <Operation>1</Operation>
  934. </Platform>
  935. </DeployClass>
  936. <DeployClass Name="iPhone_Launch2436">
  937. <Platform Name="iOSDevice32">
  938. <Operation>1</Operation>
  939. </Platform>
  940. <Platform Name="iOSDevice64">
  941. <Operation>1</Operation>
  942. </Platform>
  943. <Platform Name="iOSSimulator">
  944. <Operation>1</Operation>
  945. </Platform>
  946. </DeployClass>
  947. <DeployClass Name="iPhone_Launch2688x1242">
  948. <Platform Name="iOSDevice32">
  949. <Operation>1</Operation>
  950. </Platform>
  951. <Platform Name="iOSDevice64">
  952. <Operation>1</Operation>
  953. </Platform>
  954. <Platform Name="iOSSimulator">
  955. <Operation>1</Operation>
  956. </Platform>
  957. </DeployClass>
  958. <DeployClass Name="iPhone_Launch2x">
  959. <Platform Name="iOSDevice64">
  960. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  961. <Operation>1</Operation>
  962. </Platform>
  963. <Platform Name="iOSSimulator">
  964. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  965. <Operation>1</Operation>
  966. </Platform>
  967. </DeployClass>
  968. <DeployClass Name="iPhone_Launch320">
  969. <Platform Name="iOSDevice32">
  970. <Operation>1</Operation>
  971. </Platform>
  972. <Platform Name="iOSDevice64">
  973. <Operation>1</Operation>
  974. </Platform>
  975. <Platform Name="iOSSimulator">
  976. <Operation>1</Operation>
  977. </Platform>
  978. </DeployClass>
  979. <DeployClass Name="iPhone_Launch3x">
  980. <Platform Name="iOSDevice64">
  981. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  982. <Operation>1</Operation>
  983. </Platform>
  984. <Platform Name="iOSSimulator">
  985. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  986. <Operation>1</Operation>
  987. </Platform>
  988. </DeployClass>
  989. <DeployClass Name="iPhone_Launch640">
  990. <Platform Name="iOSDevice32">
  991. <Operation>1</Operation>
  992. </Platform>
  993. <Platform Name="iOSDevice64">
  994. <Operation>1</Operation>
  995. </Platform>
  996. <Platform Name="iOSSimulator">
  997. <Operation>1</Operation>
  998. </Platform>
  999. </DeployClass>
  1000. <DeployClass Name="iPhone_Launch640x1136">
  1001. <Platform Name="iOSDevice32">
  1002. <Operation>1</Operation>
  1003. </Platform>
  1004. <Platform Name="iOSDevice64">
  1005. <Operation>1</Operation>
  1006. </Platform>
  1007. <Platform Name="iOSSimulator">
  1008. <Operation>1</Operation>
  1009. </Platform>
  1010. </DeployClass>
  1011. <DeployClass Name="iPhone_Launch750">
  1012. <Platform Name="iOSDevice32">
  1013. <Operation>1</Operation>
  1014. </Platform>
  1015. <Platform Name="iOSDevice64">
  1016. <Operation>1</Operation>
  1017. </Platform>
  1018. <Platform Name="iOSSimulator">
  1019. <Operation>1</Operation>
  1020. </Platform>
  1021. </DeployClass>
  1022. <DeployClass Name="iPhone_Launch828">
  1023. <Platform Name="iOSDevice32">
  1024. <Operation>1</Operation>
  1025. </Platform>
  1026. <Platform Name="iOSDevice64">
  1027. <Operation>1</Operation>
  1028. </Platform>
  1029. <Platform Name="iOSSimulator">
  1030. <Operation>1</Operation>
  1031. </Platform>
  1032. </DeployClass>
  1033. <DeployClass Name="iPhone_LaunchDark2x">
  1034. <Platform Name="iOSDevice64">
  1035. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1036. <Operation>1</Operation>
  1037. </Platform>
  1038. <Platform Name="iOSSimulator">
  1039. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1040. <Operation>1</Operation>
  1041. </Platform>
  1042. </DeployClass>
  1043. <DeployClass Name="iPhone_LaunchDark3x">
  1044. <Platform Name="iOSDevice64">
  1045. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1046. <Operation>1</Operation>
  1047. </Platform>
  1048. <Platform Name="iOSSimulator">
  1049. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1050. <Operation>1</Operation>
  1051. </Platform>
  1052. </DeployClass>
  1053. <DeployClass Name="iPhone_Notification40">
  1054. <Platform Name="iOSDevice64">
  1055. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1056. <Operation>1</Operation>
  1057. </Platform>
  1058. <Platform Name="iOSSimulator">
  1059. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1060. <Operation>1</Operation>
  1061. </Platform>
  1062. </DeployClass>
  1063. <DeployClass Name="iPhone_Notification60">
  1064. <Platform Name="iOSDevice64">
  1065. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1066. <Operation>1</Operation>
  1067. </Platform>
  1068. <Platform Name="iOSSimulator">
  1069. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1070. <Operation>1</Operation>
  1071. </Platform>
  1072. </DeployClass>
  1073. <DeployClass Name="iPhone_Setting58">
  1074. <Platform Name="iOSDevice64">
  1075. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1076. <Operation>1</Operation>
  1077. </Platform>
  1078. <Platform Name="iOSSimulator">
  1079. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1080. <Operation>1</Operation>
  1081. </Platform>
  1082. </DeployClass>
  1083. <DeployClass Name="iPhone_Setting87">
  1084. <Platform Name="iOSDevice64">
  1085. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1086. <Operation>1</Operation>
  1087. </Platform>
  1088. <Platform Name="iOSSimulator">
  1089. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1090. <Operation>1</Operation>
  1091. </Platform>
  1092. </DeployClass>
  1093. <DeployClass Name="iPhone_Spotlight120">
  1094. <Platform Name="iOSDevice64">
  1095. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1096. <Operation>1</Operation>
  1097. </Platform>
  1098. <Platform Name="iOSSimulator">
  1099. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1100. <Operation>1</Operation>
  1101. </Platform>
  1102. </DeployClass>
  1103. <DeployClass Name="iPhone_Spotlight80">
  1104. <Platform Name="iOSDevice64">
  1105. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1106. <Operation>1</Operation>
  1107. </Platform>
  1108. <Platform Name="iOSSimulator">
  1109. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1110. <Operation>1</Operation>
  1111. </Platform>
  1112. </DeployClass>
  1113. <DeployClass Name="ProjectAndroidManifest">
  1114. <Platform Name="Android">
  1115. <Operation>1</Operation>
  1116. </Platform>
  1117. <Platform Name="Android64">
  1118. <Operation>1</Operation>
  1119. </Platform>
  1120. </DeployClass>
  1121. <DeployClass Name="ProjectiOSDeviceDebug">
  1122. <Platform Name="iOSDevice32">
  1123. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  1124. <Operation>1</Operation>
  1125. </Platform>
  1126. <Platform Name="iOSDevice64">
  1127. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  1128. <Operation>1</Operation>
  1129. </Platform>
  1130. </DeployClass>
  1131. <DeployClass Name="ProjectiOSDeviceResourceRules">
  1132. <Platform Name="iOSDevice32">
  1133. <Operation>1</Operation>
  1134. </Platform>
  1135. <Platform Name="iOSDevice64">
  1136. <Operation>1</Operation>
  1137. </Platform>
  1138. </DeployClass>
  1139. <DeployClass Name="ProjectiOSEntitlements">
  1140. <Platform Name="iOSDevice32">
  1141. <RemoteDir>..\</RemoteDir>
  1142. <Operation>1</Operation>
  1143. </Platform>
  1144. <Platform Name="iOSDevice64">
  1145. <RemoteDir>..\</RemoteDir>
  1146. <Operation>1</Operation>
  1147. </Platform>
  1148. </DeployClass>
  1149. <DeployClass Name="ProjectiOSInfoPList">
  1150. <Platform Name="iOSDevice32">
  1151. <Operation>1</Operation>
  1152. </Platform>
  1153. <Platform Name="iOSDevice64">
  1154. <Operation>1</Operation>
  1155. </Platform>
  1156. <Platform Name="iOSSimulator">
  1157. <Operation>1</Operation>
  1158. </Platform>
  1159. </DeployClass>
  1160. <DeployClass Name="ProjectiOSLaunchScreen">
  1161. <Platform Name="iOSDevice64">
  1162. <RemoteDir>..\$(PROJECTNAME).launchscreen</RemoteDir>
  1163. <Operation>64</Operation>
  1164. </Platform>
  1165. <Platform Name="iOSSimulator">
  1166. <RemoteDir>..\$(PROJECTNAME).launchscreen</RemoteDir>
  1167. <Operation>64</Operation>
  1168. </Platform>
  1169. </DeployClass>
  1170. <DeployClass Name="ProjectiOSResource">
  1171. <Platform Name="iOSDevice32">
  1172. <Operation>1</Operation>
  1173. </Platform>
  1174. <Platform Name="iOSDevice64">
  1175. <Operation>1</Operation>
  1176. </Platform>
  1177. <Platform Name="iOSSimulator">
  1178. <Operation>1</Operation>
  1179. </Platform>
  1180. </DeployClass>
  1181. <DeployClass Name="ProjectOSXDebug">
  1182. <Platform Name="OSX64">
  1183. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  1184. <Operation>1</Operation>
  1185. </Platform>
  1186. <Platform Name="OSXARM64">
  1187. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  1188. <Operation>1</Operation>
  1189. </Platform>
  1190. </DeployClass>
  1191. <DeployClass Name="ProjectOSXEntitlements">
  1192. <Platform Name="OSX32">
  1193. <RemoteDir>..\</RemoteDir>
  1194. <Operation>1</Operation>
  1195. </Platform>
  1196. <Platform Name="OSX64">
  1197. <RemoteDir>..\</RemoteDir>
  1198. <Operation>1</Operation>
  1199. </Platform>
  1200. <Platform Name="OSXARM64">
  1201. <RemoteDir>..\</RemoteDir>
  1202. <Operation>1</Operation>
  1203. </Platform>
  1204. </DeployClass>
  1205. <DeployClass Name="ProjectOSXInfoPList">
  1206. <Platform Name="OSX32">
  1207. <RemoteDir>Contents</RemoteDir>
  1208. <Operation>1</Operation>
  1209. </Platform>
  1210. <Platform Name="OSX64">
  1211. <RemoteDir>Contents</RemoteDir>
  1212. <Operation>1</Operation>
  1213. </Platform>
  1214. <Platform Name="OSXARM64">
  1215. <RemoteDir>Contents</RemoteDir>
  1216. <Operation>1</Operation>
  1217. </Platform>
  1218. </DeployClass>
  1219. <DeployClass Name="ProjectOSXResource">
  1220. <Platform Name="OSX32">
  1221. <RemoteDir>Contents\Resources</RemoteDir>
  1222. <Operation>1</Operation>
  1223. </Platform>
  1224. <Platform Name="OSX64">
  1225. <RemoteDir>Contents\Resources</RemoteDir>
  1226. <Operation>1</Operation>
  1227. </Platform>
  1228. <Platform Name="OSXARM64">
  1229. <RemoteDir>Contents\Resources</RemoteDir>
  1230. <Operation>1</Operation>
  1231. </Platform>
  1232. </DeployClass>
  1233. <DeployClass Required="true" Name="ProjectOutput">
  1234. <Platform Name="Android">
  1235. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  1236. <Operation>1</Operation>
  1237. </Platform>
  1238. <Platform Name="Android64">
  1239. <RemoteDir>library\lib\arm64-v8a</RemoteDir>
  1240. <Operation>1</Operation>
  1241. </Platform>
  1242. <Platform Name="iOSDevice32">
  1243. <Operation>1</Operation>
  1244. </Platform>
  1245. <Platform Name="iOSDevice64">
  1246. <Operation>1</Operation>
  1247. </Platform>
  1248. <Platform Name="iOSSimulator">
  1249. <Operation>1</Operation>
  1250. </Platform>
  1251. <Platform Name="Linux64">
  1252. <Operation>1</Operation>
  1253. </Platform>
  1254. <Platform Name="OSX32">
  1255. <RemoteDir>Contents\MacOS</RemoteDir>
  1256. <Operation>1</Operation>
  1257. </Platform>
  1258. <Platform Name="OSX64">
  1259. <RemoteDir>Contents\MacOS</RemoteDir>
  1260. <Operation>1</Operation>
  1261. </Platform>
  1262. <Platform Name="OSXARM64">
  1263. <RemoteDir>Contents\MacOS</RemoteDir>
  1264. <Operation>1</Operation>
  1265. </Platform>
  1266. <Platform Name="Win32">
  1267. <Operation>0</Operation>
  1268. </Platform>
  1269. </DeployClass>
  1270. <DeployClass Name="ProjectOutput_Android32">
  1271. <Platform Name="Android64">
  1272. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  1273. <Operation>1</Operation>
  1274. </Platform>
  1275. </DeployClass>
  1276. <DeployClass Name="ProjectUWPManifest">
  1277. <Platform Name="Win32">
  1278. <Operation>1</Operation>
  1279. </Platform>
  1280. <Platform Name="Win64">
  1281. <Operation>1</Operation>
  1282. </Platform>
  1283. </DeployClass>
  1284. <DeployClass Name="UWP_DelphiLogo150">
  1285. <Platform Name="Win32">
  1286. <RemoteDir>Assets</RemoteDir>
  1287. <Operation>1</Operation>
  1288. </Platform>
  1289. <Platform Name="Win64">
  1290. <RemoteDir>Assets</RemoteDir>
  1291. <Operation>1</Operation>
  1292. </Platform>
  1293. </DeployClass>
  1294. <DeployClass Name="UWP_DelphiLogo44">
  1295. <Platform Name="Win32">
  1296. <RemoteDir>Assets</RemoteDir>
  1297. <Operation>1</Operation>
  1298. </Platform>
  1299. <Platform Name="Win64">
  1300. <RemoteDir>Assets</RemoteDir>
  1301. <Operation>1</Operation>
  1302. </Platform>
  1303. </DeployClass>
  1304. <ProjectRoot Platform="OSX32" Name="$(PROJECTNAME).app"/>
  1305. <ProjectRoot Platform="OSX64" Name="$(PROJECTNAME).app"/>
  1306. <ProjectRoot Platform="Win32" Name="$(PROJECTNAME)"/>
  1307. <ProjectRoot Platform="Android64" Name="$(PROJECTNAME)"/>
  1308. <ProjectRoot Platform="Android" Name="$(PROJECTNAME)"/>
  1309. <ProjectRoot Platform="Win64" Name="$(PROJECTNAME)"/>
  1310. <ProjectRoot Platform="OSXARM64" Name="$(PROJECTNAME).app"/>
  1311. <ProjectRoot Platform="iOSDevice32" Name="$(PROJECTNAME).app"/>
  1312. <ProjectRoot Platform="iOSDevice64" Name="$(PROJECTNAME).app"/>
  1313. <ProjectRoot Platform="Linux64" Name="$(PROJECTNAME)"/>
  1314. <ProjectRoot Platform="iOSSimulator" Name="$(PROJECTNAME).app"/>
  1315. </Deployment>
  1316. </BorlandProject>
  1317. <ProjectFileVersion>12</ProjectFileVersion>
  1318. </ProjectExtensions>
  1319. <Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
  1320. <Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
  1321. <Import Project="$(MSBuildProjectName).deployproj" Condition="Exists('$(MSBuildProjectName).deployproj')"/>
  1322. </Project>