ParticleSwarm.dproj 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134
  1. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <Base>True</Base>
  4. <AppType>Application</AppType>
  5. <Config Condition="'$(Config)'==''">Debug</Config>
  6. <FrameworkType>VCL</FrameworkType>
  7. <MainSource>ParticleSwarm.dpr</MainSource>
  8. <Platform Condition="'$(Platform)'==''">Win32</Platform>
  9. <ProjectGuid>{87de5d8d-9dcb-4069-abd6-fe822b52f62c}</ProjectGuid>
  10. <ProjectVersion>20.3</ProjectVersion>
  11. <TargetedPlatforms>3</TargetedPlatforms>
  12. <ProjectName Condition="'$(ProjectName)'==''">ParticleSwarm</ProjectName>
  13. </PropertyGroup>
  14. <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
  15. <Base>true</Base>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
  18. <Base_Win32>true</Base_Win32>
  19. <CfgParent>Base</CfgParent>
  20. <Base>true</Base>
  21. </PropertyGroup>
  22. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
  23. <Base_Win64>true</Base_Win64>
  24. <CfgParent>Base</CfgParent>
  25. <Base>true</Base>
  26. </PropertyGroup>
  27. <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''">
  28. <Cfg_1>true</Cfg_1>
  29. <CfgParent>Base</CfgParent>
  30. <Base>true</Base>
  31. </PropertyGroup>
  32. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win64)'!=''">
  33. <Cfg_1_Win64>true</Cfg_1_Win64>
  34. <CfgParent>Cfg_1</CfgParent>
  35. <Cfg_1>true</Cfg_1>
  36. <Base>true</Base>
  37. </PropertyGroup>
  38. <PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''">
  39. <Cfg_2>true</Cfg_2>
  40. <CfgParent>Base</CfgParent>
  41. <Base>true</Base>
  42. </PropertyGroup>
  43. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''">
  44. <Cfg_2_Win32>true</Cfg_2_Win32>
  45. <CfgParent>Cfg_2</CfgParent>
  46. <Cfg_2>true</Cfg_2>
  47. <Base>true</Base>
  48. </PropertyGroup>
  49. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win64)'!=''">
  50. <Cfg_2_Win64>true</Cfg_2_Win64>
  51. <CfgParent>Cfg_2</CfgParent>
  52. <Cfg_2>true</Cfg_2>
  53. <Base>true</Base>
  54. </PropertyGroup>
  55. <PropertyGroup Condition="'$(Base)'!=''">
  56. <SanitizedProjectName>ParticleSwarm</SanitizedProjectName>
  57. <BRCC_CompilerToUse>rc</BRCC_CompilerToUse>
  58. <DCC_DcuOutput>.\Lib\$(Platform)\$(Config)</DCC_DcuOutput>
  59. <DCC_ExeOutput>.\Bin\$(Platform)\$(Config)</DCC_ExeOutput>
  60. <DCC_ImageBase>00400000</DCC_ImageBase>
  61. <DCC_Namespace>Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;System;Xml;Data;Datasnap;Web;Soap;FMX;Winapi;$(DCC_Namespace)</DCC_Namespace>
  62. <DCC_UnitSearchPath>..\..\..\Source;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
  63. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  64. <VerInfo_Keys>CompanyName=Graphics32;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
  65. <VerInfo_Locale>1033</VerInfo_Locale>
  66. </PropertyGroup>
  67. <PropertyGroup Condition="'$(Base_Win32)'!=''">
  68. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  69. <DCC_Namespace>System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
  70. <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
  71. </PropertyGroup>
  72. <PropertyGroup Condition="'$(Base_Win64)'!=''">
  73. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  74. <BT_BuildType>Debug</BT_BuildType>
  75. <DCC_Namespace>System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
  76. <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
  77. </PropertyGroup>
  78. <PropertyGroup Condition="'$(Cfg_1)'!=''">
  79. <DCC_DebugInformation>0</DCC_DebugInformation>
  80. <DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
  81. <DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
  82. <DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
  83. </PropertyGroup>
  84. <PropertyGroup Condition="'$(Cfg_1_Win64)'!=''">
  85. <AppEnableHighDPI>true</AppEnableHighDPI>
  86. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  87. </PropertyGroup>
  88. <PropertyGroup Condition="'$(Cfg_2)'!=''">
  89. <DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
  90. <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
  91. <DCC_Optimize>false</DCC_Optimize>
  92. </PropertyGroup>
  93. <PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
  94. <BRCC_CompilerToUse>rc</BRCC_CompilerToUse>
  95. <BT_BuildType>Debug</BT_BuildType>
  96. <AppDPIAwarenessMode>none</AppDPIAwarenessMode>
  97. <DCC_Inlining>off</DCC_Inlining>
  98. <DCC_DebugDCUs>true</DCC_DebugDCUs>
  99. </PropertyGroup>
  100. <PropertyGroup Condition="'$(Cfg_2_Win64)'!=''">
  101. <AppEnableHighDPI>true</AppEnableHighDPI>
  102. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  103. </PropertyGroup>
  104. <ItemGroup>
  105. <DelphiCompile Include="$(MainSource)">
  106. <MainSource>MainSource</MainSource>
  107. </DelphiCompile>
  108. <RcCompile Include="..\..\mainicon.rc">
  109. <Form>mainicon.res</Form>
  110. </RcCompile>
  111. <DCCReference Include="MainUnit.pas">
  112. <Form>FormMain</Form>
  113. </DCCReference>
  114. <DCCReference Include="HelpUnit.pas">
  115. <Form>FormHelp</Form>
  116. <FormType>dfm</FormType>
  117. </DCCReference>
  118. <BuildConfiguration Include="Base">
  119. <Key>Base</Key>
  120. </BuildConfiguration>
  121. <BuildConfiguration Include="Release">
  122. <Key>Cfg_1</Key>
  123. <CfgParent>Base</CfgParent>
  124. </BuildConfiguration>
  125. <BuildConfiguration Include="Debug">
  126. <Key>Cfg_2</Key>
  127. <CfgParent>Base</CfgParent>
  128. </BuildConfiguration>
  129. </ItemGroup>
  130. <ProjectExtensions>
  131. <Borland.Personality>Delphi.Personality.12</Borland.Personality>
  132. <Borland.ProjectType/>
  133. <BorlandProject>
  134. <Delphi.Personality>
  135. <Source>
  136. <Source Name="MainSource">ParticleSwarm.dpr</Source>
  137. </Source>
  138. <Excluded_Packages>
  139. <Excluded_Packages Name="$(BDSBIN)\dcloffice2k280.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
  140. <Excluded_Packages Name="$(BDSBIN)\dclofficexp280.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
  141. </Excluded_Packages>
  142. <VersionInfo>
  143. <VersionInfo Name="IncludeVerInfo">False</VersionInfo>
  144. <VersionInfo Name="AutoIncBuild">False</VersionInfo>
  145. <VersionInfo Name="MajorVer">1</VersionInfo>
  146. <VersionInfo Name="MinorVer">0</VersionInfo>
  147. <VersionInfo Name="Release">0</VersionInfo>
  148. <VersionInfo Name="Build">0</VersionInfo>
  149. <VersionInfo Name="Debug">False</VersionInfo>
  150. <VersionInfo Name="PreRelease">False</VersionInfo>
  151. <VersionInfo Name="Special">False</VersionInfo>
  152. <VersionInfo Name="Private">False</VersionInfo>
  153. <VersionInfo Name="DLL">False</VersionInfo>
  154. <VersionInfo Name="Locale">1033</VersionInfo>
  155. <VersionInfo Name="CodePage">1252</VersionInfo>
  156. </VersionInfo>
  157. <VersionInfoKeys>
  158. <VersionInfoKeys Name="CompanyName"/>
  159. <VersionInfoKeys Name="FileDescription"/>
  160. <VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
  161. <VersionInfoKeys Name="InternalName"/>
  162. <VersionInfoKeys Name="LegalCopyright"/>
  163. <VersionInfoKeys Name="LegalTrademarks"/>
  164. <VersionInfoKeys Name="OriginalFilename"/>
  165. <VersionInfoKeys Name="ProductName"/>
  166. <VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
  167. <VersionInfoKeys Name="Comments"/>
  168. </VersionInfoKeys>
  169. </Delphi.Personality>
  170. <Platforms>
  171. <Platform value="Win32">True</Platform>
  172. <Platform value="Win64">True</Platform>
  173. </Platforms>
  174. <Deployment Version="5">
  175. <DeployFile LocalName="Bin\Win32\Debug\ParticleSwarm.exe" Configuration="Debug" Class="ProjectOutput"/>
  176. <DeployFile LocalName="Bin\Win64\Release\ParticleSwarm.exe" Configuration="Release" Class="ProjectOutput"/>
  177. <DeployClass Name="AdditionalDebugSymbols">
  178. <Platform Name="iOSSimulator">
  179. <Operation>1</Operation>
  180. </Platform>
  181. <Platform Name="OSX32">
  182. <RemoteDir>Contents\MacOS</RemoteDir>
  183. <Operation>1</Operation>
  184. </Platform>
  185. <Platform Name="Win32">
  186. <Operation>0</Operation>
  187. </Platform>
  188. </DeployClass>
  189. <DeployClass Name="AndroidFileProvider">
  190. <Platform Name="Android">
  191. <RemoteDir>res\xml</RemoteDir>
  192. <Operation>1</Operation>
  193. </Platform>
  194. <Platform Name="Android64">
  195. <RemoteDir>res\xml</RemoteDir>
  196. <Operation>1</Operation>
  197. </Platform>
  198. </DeployClass>
  199. <DeployClass Name="AndroidLibnativeArmeabiFile">
  200. <Platform Name="Android">
  201. <RemoteDir>library\lib\armeabi</RemoteDir>
  202. <Operation>1</Operation>
  203. </Platform>
  204. <Platform Name="Android64">
  205. <RemoteDir>library\lib\armeabi</RemoteDir>
  206. <Operation>1</Operation>
  207. </Platform>
  208. </DeployClass>
  209. <DeployClass Name="AndroidLibnativeArmeabiv7aFile">
  210. <Platform Name="Android64">
  211. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  212. <Operation>1</Operation>
  213. </Platform>
  214. </DeployClass>
  215. <DeployClass Name="AndroidLibnativeMipsFile">
  216. <Platform Name="Android">
  217. <RemoteDir>library\lib\mips</RemoteDir>
  218. <Operation>1</Operation>
  219. </Platform>
  220. <Platform Name="Android64">
  221. <RemoteDir>library\lib\mips</RemoteDir>
  222. <Operation>1</Operation>
  223. </Platform>
  224. </DeployClass>
  225. <DeployClass Name="AndroidServiceOutput">
  226. <Platform Name="Android">
  227. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  228. <Operation>1</Operation>
  229. </Platform>
  230. <Platform Name="Android64">
  231. <RemoteDir>library\lib\arm64-v8a</RemoteDir>
  232. <Operation>1</Operation>
  233. </Platform>
  234. </DeployClass>
  235. <DeployClass Name="AndroidServiceOutput_Android32">
  236. <Platform Name="Android64">
  237. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  238. <Operation>1</Operation>
  239. </Platform>
  240. </DeployClass>
  241. <DeployClass Name="AndroidSplashImageDef">
  242. <Platform Name="Android">
  243. <RemoteDir>res\drawable</RemoteDir>
  244. <Operation>1</Operation>
  245. </Platform>
  246. <Platform Name="Android64">
  247. <RemoteDir>res\drawable</RemoteDir>
  248. <Operation>1</Operation>
  249. </Platform>
  250. </DeployClass>
  251. <DeployClass Name="AndroidSplashImageDefV21">
  252. <Platform Name="Android">
  253. <RemoteDir>res\drawable-anydpi-v21</RemoteDir>
  254. <Operation>1</Operation>
  255. </Platform>
  256. <Platform Name="Android64">
  257. <RemoteDir>res\drawable-anydpi-v21</RemoteDir>
  258. <Operation>1</Operation>
  259. </Platform>
  260. </DeployClass>
  261. <DeployClass Name="AndroidSplashStyles">
  262. <Platform Name="Android">
  263. <RemoteDir>res\values</RemoteDir>
  264. <Operation>1</Operation>
  265. </Platform>
  266. <Platform Name="Android64">
  267. <RemoteDir>res\values</RemoteDir>
  268. <Operation>1</Operation>
  269. </Platform>
  270. </DeployClass>
  271. <DeployClass Name="AndroidSplashStylesV21">
  272. <Platform Name="Android">
  273. <RemoteDir>res\values-v21</RemoteDir>
  274. <Operation>1</Operation>
  275. </Platform>
  276. <Platform Name="Android64">
  277. <RemoteDir>res\values-v21</RemoteDir>
  278. <Operation>1</Operation>
  279. </Platform>
  280. </DeployClass>
  281. <DeployClass Name="AndroidSplashStylesV31">
  282. <Platform Name="Android">
  283. <RemoteDir>res\values-v31</RemoteDir>
  284. <Operation>1</Operation>
  285. </Platform>
  286. <Platform Name="Android64">
  287. <RemoteDir>res\values-v31</RemoteDir>
  288. <Operation>1</Operation>
  289. </Platform>
  290. </DeployClass>
  291. <DeployClass Name="AndroidSplashStylesV35">
  292. <Platform Name="Android">
  293. <RemoteDir>res\values-v35</RemoteDir>
  294. <Operation>1</Operation>
  295. </Platform>
  296. <Platform Name="Android64">
  297. <RemoteDir>res\values-v35</RemoteDir>
  298. <Operation>1</Operation>
  299. </Platform>
  300. </DeployClass>
  301. <DeployClass Name="Android_AdaptiveIcon">
  302. <Platform Name="Android">
  303. <RemoteDir>res\drawable-anydpi-v26</RemoteDir>
  304. <Operation>1</Operation>
  305. </Platform>
  306. <Platform Name="Android64">
  307. <RemoteDir>res\drawable-anydpi-v26</RemoteDir>
  308. <Operation>1</Operation>
  309. </Platform>
  310. </DeployClass>
  311. <DeployClass Name="Android_AdaptiveIconBackground">
  312. <Platform Name="Android">
  313. <RemoteDir>res\drawable</RemoteDir>
  314. <Operation>1</Operation>
  315. </Platform>
  316. <Platform Name="Android64">
  317. <RemoteDir>res\drawable</RemoteDir>
  318. <Operation>1</Operation>
  319. </Platform>
  320. </DeployClass>
  321. <DeployClass Name="Android_AdaptiveIconForeground">
  322. <Platform Name="Android">
  323. <RemoteDir>res\drawable</RemoteDir>
  324. <Operation>1</Operation>
  325. </Platform>
  326. <Platform Name="Android64">
  327. <RemoteDir>res\drawable</RemoteDir>
  328. <Operation>1</Operation>
  329. </Platform>
  330. </DeployClass>
  331. <DeployClass Name="Android_AdaptiveIconMonochrome">
  332. <Platform Name="Android">
  333. <RemoteDir>res\drawable</RemoteDir>
  334. <Operation>1</Operation>
  335. </Platform>
  336. <Platform Name="Android64">
  337. <RemoteDir>res\drawable</RemoteDir>
  338. <Operation>1</Operation>
  339. </Platform>
  340. </DeployClass>
  341. <DeployClass Name="Android_AdaptiveIconV33">
  342. <Platform Name="Android">
  343. <RemoteDir>res\drawable-anydpi-v33</RemoteDir>
  344. <Operation>1</Operation>
  345. </Platform>
  346. <Platform Name="Android64">
  347. <RemoteDir>res\drawable-anydpi-v33</RemoteDir>
  348. <Operation>1</Operation>
  349. </Platform>
  350. </DeployClass>
  351. <DeployClass Name="Android_Colors">
  352. <Platform Name="Android">
  353. <RemoteDir>res\values</RemoteDir>
  354. <Operation>1</Operation>
  355. </Platform>
  356. <Platform Name="Android64">
  357. <RemoteDir>res\values</RemoteDir>
  358. <Operation>1</Operation>
  359. </Platform>
  360. </DeployClass>
  361. <DeployClass Name="Android_ColorsDark">
  362. <Platform Name="Android">
  363. <RemoteDir>res\values-night-v21</RemoteDir>
  364. <Operation>1</Operation>
  365. </Platform>
  366. <Platform Name="Android64">
  367. <RemoteDir>res\values-night-v21</RemoteDir>
  368. <Operation>1</Operation>
  369. </Platform>
  370. </DeployClass>
  371. <DeployClass Name="Android_DefaultAppIcon">
  372. <Platform Name="Android">
  373. <RemoteDir>res\drawable</RemoteDir>
  374. <Operation>1</Operation>
  375. </Platform>
  376. <Platform Name="Android64">
  377. <RemoteDir>res\drawable</RemoteDir>
  378. <Operation>1</Operation>
  379. </Platform>
  380. </DeployClass>
  381. <DeployClass Name="Android_LauncherIcon144">
  382. <Platform Name="Android">
  383. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  384. <Operation>1</Operation>
  385. </Platform>
  386. <Platform Name="Android64">
  387. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  388. <Operation>1</Operation>
  389. </Platform>
  390. </DeployClass>
  391. <DeployClass Name="Android_LauncherIcon192">
  392. <Platform Name="Android">
  393. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  394. <Operation>1</Operation>
  395. </Platform>
  396. <Platform Name="Android64">
  397. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  398. <Operation>1</Operation>
  399. </Platform>
  400. </DeployClass>
  401. <DeployClass Name="Android_LauncherIcon36">
  402. <Platform Name="Android">
  403. <RemoteDir>res\drawable-ldpi</RemoteDir>
  404. <Operation>1</Operation>
  405. </Platform>
  406. <Platform Name="Android64">
  407. <RemoteDir>res\drawable-ldpi</RemoteDir>
  408. <Operation>1</Operation>
  409. </Platform>
  410. </DeployClass>
  411. <DeployClass Name="Android_LauncherIcon48">
  412. <Platform Name="Android">
  413. <RemoteDir>res\drawable-mdpi</RemoteDir>
  414. <Operation>1</Operation>
  415. </Platform>
  416. <Platform Name="Android64">
  417. <RemoteDir>res\drawable-mdpi</RemoteDir>
  418. <Operation>1</Operation>
  419. </Platform>
  420. </DeployClass>
  421. <DeployClass Name="Android_LauncherIcon72">
  422. <Platform Name="Android">
  423. <RemoteDir>res\drawable-hdpi</RemoteDir>
  424. <Operation>1</Operation>
  425. </Platform>
  426. <Platform Name="Android64">
  427. <RemoteDir>res\drawable-hdpi</RemoteDir>
  428. <Operation>1</Operation>
  429. </Platform>
  430. </DeployClass>
  431. <DeployClass Name="Android_LauncherIcon96">
  432. <Platform Name="Android">
  433. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  434. <Operation>1</Operation>
  435. </Platform>
  436. <Platform Name="Android64">
  437. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  438. <Operation>1</Operation>
  439. </Platform>
  440. </DeployClass>
  441. <DeployClass Name="Android_NotificationIcon24">
  442. <Platform Name="Android">
  443. <RemoteDir>res\drawable-mdpi</RemoteDir>
  444. <Operation>1</Operation>
  445. </Platform>
  446. <Platform Name="Android64">
  447. <RemoteDir>res\drawable-mdpi</RemoteDir>
  448. <Operation>1</Operation>
  449. </Platform>
  450. </DeployClass>
  451. <DeployClass Name="Android_NotificationIcon36">
  452. <Platform Name="Android">
  453. <RemoteDir>res\drawable-hdpi</RemoteDir>
  454. <Operation>1</Operation>
  455. </Platform>
  456. <Platform Name="Android64">
  457. <RemoteDir>res\drawable-hdpi</RemoteDir>
  458. <Operation>1</Operation>
  459. </Platform>
  460. </DeployClass>
  461. <DeployClass Name="Android_NotificationIcon48">
  462. <Platform Name="Android">
  463. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  464. <Operation>1</Operation>
  465. </Platform>
  466. <Platform Name="Android64">
  467. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  468. <Operation>1</Operation>
  469. </Platform>
  470. </DeployClass>
  471. <DeployClass Name="Android_NotificationIcon72">
  472. <Platform Name="Android">
  473. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  474. <Operation>1</Operation>
  475. </Platform>
  476. <Platform Name="Android64">
  477. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  478. <Operation>1</Operation>
  479. </Platform>
  480. </DeployClass>
  481. <DeployClass Name="Android_NotificationIcon96">
  482. <Platform Name="Android">
  483. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  484. <Operation>1</Operation>
  485. </Platform>
  486. <Platform Name="Android64">
  487. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  488. <Operation>1</Operation>
  489. </Platform>
  490. </DeployClass>
  491. <DeployClass Name="Android_SplashImage426">
  492. <Platform Name="Android">
  493. <RemoteDir>res\drawable-small</RemoteDir>
  494. <Operation>1</Operation>
  495. </Platform>
  496. <Platform Name="Android64">
  497. <RemoteDir>res\drawable-small</RemoteDir>
  498. <Operation>1</Operation>
  499. </Platform>
  500. </DeployClass>
  501. <DeployClass Name="Android_SplashImage470">
  502. <Platform Name="Android">
  503. <RemoteDir>res\drawable-normal</RemoteDir>
  504. <Operation>1</Operation>
  505. </Platform>
  506. <Platform Name="Android64">
  507. <RemoteDir>res\drawable-normal</RemoteDir>
  508. <Operation>1</Operation>
  509. </Platform>
  510. </DeployClass>
  511. <DeployClass Name="Android_SplashImage640">
  512. <Platform Name="Android">
  513. <RemoteDir>res\drawable-large</RemoteDir>
  514. <Operation>1</Operation>
  515. </Platform>
  516. <Platform Name="Android64">
  517. <RemoteDir>res\drawable-large</RemoteDir>
  518. <Operation>1</Operation>
  519. </Platform>
  520. </DeployClass>
  521. <DeployClass Name="Android_SplashImage960">
  522. <Platform Name="Android">
  523. <RemoteDir>res\drawable-xlarge</RemoteDir>
  524. <Operation>1</Operation>
  525. </Platform>
  526. <Platform Name="Android64">
  527. <RemoteDir>res\drawable-xlarge</RemoteDir>
  528. <Operation>1</Operation>
  529. </Platform>
  530. </DeployClass>
  531. <DeployClass Name="Android_Strings">
  532. <Platform Name="Android">
  533. <RemoteDir>res\values</RemoteDir>
  534. <Operation>1</Operation>
  535. </Platform>
  536. <Platform Name="Android64">
  537. <RemoteDir>res\values</RemoteDir>
  538. <Operation>1</Operation>
  539. </Platform>
  540. </DeployClass>
  541. <DeployClass Name="Android_VectorizedNotificationIcon">
  542. <Platform Name="Android">
  543. <RemoteDir>res\drawable-anydpi-v24</RemoteDir>
  544. <Operation>1</Operation>
  545. </Platform>
  546. <Platform Name="Android64">
  547. <RemoteDir>res\drawable-anydpi-v24</RemoteDir>
  548. <Operation>1</Operation>
  549. </Platform>
  550. </DeployClass>
  551. <DeployClass Name="Android_VectorizedSplash">
  552. <Platform Name="Android">
  553. <RemoteDir>res\drawable</RemoteDir>
  554. <Operation>1</Operation>
  555. </Platform>
  556. <Platform Name="Android64">
  557. <RemoteDir>res\drawable</RemoteDir>
  558. <Operation>1</Operation>
  559. </Platform>
  560. </DeployClass>
  561. <DeployClass Name="Android_VectorizedSplashDark">
  562. <Platform Name="Android">
  563. <RemoteDir>res\drawable-night-anydpi-v21</RemoteDir>
  564. <Operation>1</Operation>
  565. </Platform>
  566. <Platform Name="Android64">
  567. <RemoteDir>res\drawable-night-anydpi-v21</RemoteDir>
  568. <Operation>1</Operation>
  569. </Platform>
  570. </DeployClass>
  571. <DeployClass Name="Android_VectorizedSplashV31">
  572. <Platform Name="Android">
  573. <RemoteDir>res\drawable-anydpi-v31</RemoteDir>
  574. <Operation>1</Operation>
  575. </Platform>
  576. <Platform Name="Android64">
  577. <RemoteDir>res\drawable-anydpi-v31</RemoteDir>
  578. <Operation>1</Operation>
  579. </Platform>
  580. </DeployClass>
  581. <DeployClass Name="Android_VectorizedSplashV31Dark">
  582. <Platform Name="Android">
  583. <RemoteDir>res\drawable-night-anydpi-v31</RemoteDir>
  584. <Operation>1</Operation>
  585. </Platform>
  586. <Platform Name="Android64">
  587. <RemoteDir>res\drawable-night-anydpi-v31</RemoteDir>
  588. <Operation>1</Operation>
  589. </Platform>
  590. </DeployClass>
  591. <DeployClass Name="DebugSymbols">
  592. <Platform Name="iOSSimulator">
  593. <Operation>1</Operation>
  594. </Platform>
  595. <Platform Name="OSX32">
  596. <RemoteDir>Contents\MacOS</RemoteDir>
  597. <Operation>1</Operation>
  598. </Platform>
  599. <Platform Name="Win32">
  600. <Operation>0</Operation>
  601. </Platform>
  602. </DeployClass>
  603. <DeployClass Name="DependencyFramework">
  604. <Platform Name="OSX32">
  605. <RemoteDir>Contents\MacOS</RemoteDir>
  606. <Operation>1</Operation>
  607. <Extensions>.framework</Extensions>
  608. </Platform>
  609. <Platform Name="OSX64">
  610. <RemoteDir>Contents\MacOS</RemoteDir>
  611. <Operation>1</Operation>
  612. <Extensions>.framework</Extensions>
  613. </Platform>
  614. <Platform Name="OSXARM64">
  615. <RemoteDir>Contents\MacOS</RemoteDir>
  616. <Operation>1</Operation>
  617. <Extensions>.framework</Extensions>
  618. </Platform>
  619. <Platform Name="Win32">
  620. <Operation>0</Operation>
  621. </Platform>
  622. </DeployClass>
  623. <DeployClass Name="DependencyModule">
  624. <Platform Name="iOSDevice32">
  625. <Operation>1</Operation>
  626. <Extensions>.dylib</Extensions>
  627. </Platform>
  628. <Platform Name="iOSDevice64">
  629. <Operation>1</Operation>
  630. <Extensions>.dylib</Extensions>
  631. </Platform>
  632. <Platform Name="iOSSimARM64">
  633. <Operation>1</Operation>
  634. <Extensions>.dylib</Extensions>
  635. </Platform>
  636. <Platform Name="OSX32">
  637. <RemoteDir>Contents\MacOS</RemoteDir>
  638. <Operation>1</Operation>
  639. <Extensions>.dylib</Extensions>
  640. </Platform>
  641. <Platform Name="OSX64">
  642. <RemoteDir>Contents\MacOS</RemoteDir>
  643. <Operation>1</Operation>
  644. <Extensions>.dylib</Extensions>
  645. </Platform>
  646. <Platform Name="OSXARM64">
  647. <RemoteDir>Contents\MacOS</RemoteDir>
  648. <Operation>1</Operation>
  649. <Extensions>.dylib</Extensions>
  650. </Platform>
  651. <Platform Name="Win32">
  652. <Operation>0</Operation>
  653. <Extensions>.dll;.bpl</Extensions>
  654. </Platform>
  655. </DeployClass>
  656. <DeployClass Required="true" Name="DependencyPackage">
  657. <Platform Name="iOSDevice32">
  658. <Operation>1</Operation>
  659. <Extensions>.dylib</Extensions>
  660. </Platform>
  661. <Platform Name="iOSDevice64">
  662. <Operation>1</Operation>
  663. <Extensions>.dylib</Extensions>
  664. </Platform>
  665. <Platform Name="iOSSimARM64">
  666. <Operation>1</Operation>
  667. <Extensions>.dylib</Extensions>
  668. </Platform>
  669. <Platform Name="OSX32">
  670. <RemoteDir>Contents\MacOS</RemoteDir>
  671. <Operation>1</Operation>
  672. <Extensions>.dylib</Extensions>
  673. </Platform>
  674. <Platform Name="OSX64">
  675. <RemoteDir>Contents\MacOS</RemoteDir>
  676. <Operation>1</Operation>
  677. <Extensions>.dylib</Extensions>
  678. </Platform>
  679. <Platform Name="OSXARM64">
  680. <RemoteDir>Contents\MacOS</RemoteDir>
  681. <Operation>1</Operation>
  682. <Extensions>.dylib</Extensions>
  683. </Platform>
  684. <Platform Name="Win32">
  685. <Operation>0</Operation>
  686. <Extensions>.bpl</Extensions>
  687. </Platform>
  688. </DeployClass>
  689. <DeployClass Name="File">
  690. <Platform Name="Android">
  691. <Operation>0</Operation>
  692. </Platform>
  693. <Platform Name="Android64">
  694. <Operation>0</Operation>
  695. </Platform>
  696. <Platform Name="iOSDevice32">
  697. <Operation>0</Operation>
  698. </Platform>
  699. <Platform Name="iOSDevice64">
  700. <Operation>0</Operation>
  701. </Platform>
  702. <Platform Name="iOSSimARM64">
  703. <Operation>0</Operation>
  704. </Platform>
  705. <Platform Name="OSX32">
  706. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  707. <Operation>0</Operation>
  708. </Platform>
  709. <Platform Name="OSX64">
  710. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  711. <Operation>0</Operation>
  712. </Platform>
  713. <Platform Name="OSXARM64">
  714. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  715. <Operation>0</Operation>
  716. </Platform>
  717. <Platform Name="Win32">
  718. <Operation>0</Operation>
  719. </Platform>
  720. </DeployClass>
  721. <DeployClass Name="ProjectAndroidManifest">
  722. <Platform Name="Android">
  723. <Operation>1</Operation>
  724. </Platform>
  725. <Platform Name="Android64">
  726. <Operation>1</Operation>
  727. </Platform>
  728. </DeployClass>
  729. <DeployClass Name="ProjectOSXDebug">
  730. <Platform Name="OSX64">
  731. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  732. <Operation>1</Operation>
  733. </Platform>
  734. <Platform Name="OSXARM64">
  735. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  736. <Operation>1</Operation>
  737. </Platform>
  738. </DeployClass>
  739. <DeployClass Name="ProjectOSXEntitlements">
  740. <Platform Name="OSX32">
  741. <RemoteDir>..\</RemoteDir>
  742. <Operation>1</Operation>
  743. </Platform>
  744. <Platform Name="OSX64">
  745. <RemoteDir>..\</RemoteDir>
  746. <Operation>1</Operation>
  747. </Platform>
  748. <Platform Name="OSXARM64">
  749. <RemoteDir>..\</RemoteDir>
  750. <Operation>1</Operation>
  751. </Platform>
  752. </DeployClass>
  753. <DeployClass Name="ProjectOSXInfoPList">
  754. <Platform Name="OSX32">
  755. <RemoteDir>Contents</RemoteDir>
  756. <Operation>1</Operation>
  757. </Platform>
  758. <Platform Name="OSX64">
  759. <RemoteDir>Contents</RemoteDir>
  760. <Operation>1</Operation>
  761. </Platform>
  762. <Platform Name="OSXARM64">
  763. <RemoteDir>Contents</RemoteDir>
  764. <Operation>1</Operation>
  765. </Platform>
  766. </DeployClass>
  767. <DeployClass Name="ProjectOSXResource">
  768. <Platform Name="OSX32">
  769. <RemoteDir>Contents\Resources</RemoteDir>
  770. <Operation>1</Operation>
  771. </Platform>
  772. <Platform Name="OSX64">
  773. <RemoteDir>Contents\Resources</RemoteDir>
  774. <Operation>1</Operation>
  775. </Platform>
  776. <Platform Name="OSXARM64">
  777. <RemoteDir>Contents\Resources</RemoteDir>
  778. <Operation>1</Operation>
  779. </Platform>
  780. </DeployClass>
  781. <DeployClass Required="true" Name="ProjectOutput">
  782. <Platform Name="Android">
  783. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  784. <Operation>1</Operation>
  785. </Platform>
  786. <Platform Name="Android64">
  787. <RemoteDir>library\lib\arm64-v8a</RemoteDir>
  788. <Operation>1</Operation>
  789. </Platform>
  790. <Platform Name="iOSDevice32">
  791. <Operation>1</Operation>
  792. </Platform>
  793. <Platform Name="iOSDevice64">
  794. <Operation>1</Operation>
  795. </Platform>
  796. <Platform Name="iOSSimARM64">
  797. <Operation>1</Operation>
  798. </Platform>
  799. <Platform Name="Linux64">
  800. <Operation>1</Operation>
  801. </Platform>
  802. <Platform Name="OSX32">
  803. <RemoteDir>Contents\MacOS</RemoteDir>
  804. <Operation>1</Operation>
  805. </Platform>
  806. <Platform Name="OSX64">
  807. <RemoteDir>Contents\MacOS</RemoteDir>
  808. <Operation>1</Operation>
  809. </Platform>
  810. <Platform Name="OSXARM64">
  811. <RemoteDir>Contents\MacOS</RemoteDir>
  812. <Operation>1</Operation>
  813. </Platform>
  814. <Platform Name="Win32">
  815. <Operation>0</Operation>
  816. </Platform>
  817. </DeployClass>
  818. <DeployClass Name="ProjectOutput_Android32">
  819. <Platform Name="Android64">
  820. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  821. <Operation>1</Operation>
  822. </Platform>
  823. </DeployClass>
  824. <DeployClass Name="ProjectUWPManifest">
  825. <Platform Name="Win32">
  826. <Operation>1</Operation>
  827. </Platform>
  828. <Platform Name="Win64">
  829. <Operation>1</Operation>
  830. </Platform>
  831. <Platform Name="Win64x">
  832. <Operation>1</Operation>
  833. </Platform>
  834. </DeployClass>
  835. <DeployClass Name="ProjectiOSDeviceDebug">
  836. <Platform Name="iOSDevice32">
  837. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  838. <Operation>1</Operation>
  839. </Platform>
  840. <Platform Name="iOSDevice64">
  841. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  842. <Operation>1</Operation>
  843. </Platform>
  844. <Platform Name="iOSSimARM64">
  845. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  846. <Operation>1</Operation>
  847. </Platform>
  848. </DeployClass>
  849. <DeployClass Name="ProjectiOSEntitlements">
  850. <Platform Name="iOSDevice32">
  851. <RemoteDir>..\</RemoteDir>
  852. <Operation>1</Operation>
  853. </Platform>
  854. <Platform Name="iOSDevice64">
  855. <RemoteDir>..\</RemoteDir>
  856. <Operation>1</Operation>
  857. </Platform>
  858. <Platform Name="iOSSimARM64">
  859. <RemoteDir>..\</RemoteDir>
  860. <Operation>1</Operation>
  861. </Platform>
  862. </DeployClass>
  863. <DeployClass Name="ProjectiOSInfoPList">
  864. <Platform Name="iOSDevice32">
  865. <Operation>1</Operation>
  866. </Platform>
  867. <Platform Name="iOSDevice64">
  868. <Operation>1</Operation>
  869. </Platform>
  870. <Platform Name="iOSSimARM64">
  871. <Operation>1</Operation>
  872. </Platform>
  873. </DeployClass>
  874. <DeployClass Name="ProjectiOSLaunchScreen">
  875. <Platform Name="iOSDevice64">
  876. <RemoteDir>..\$(PROJECTNAME).launchscreen</RemoteDir>
  877. <Operation>64</Operation>
  878. </Platform>
  879. <Platform Name="iOSSimARM64">
  880. <RemoteDir>..\$(PROJECTNAME).launchscreen</RemoteDir>
  881. <Operation>64</Operation>
  882. </Platform>
  883. </DeployClass>
  884. <DeployClass Name="ProjectiOSResource">
  885. <Platform Name="iOSDevice32">
  886. <Operation>1</Operation>
  887. </Platform>
  888. <Platform Name="iOSDevice64">
  889. <Operation>1</Operation>
  890. </Platform>
  891. <Platform Name="iOSSimARM64">
  892. <Operation>1</Operation>
  893. </Platform>
  894. </DeployClass>
  895. <DeployClass Name="UWP_DelphiLogo150">
  896. <Platform Name="Win32">
  897. <RemoteDir>Assets</RemoteDir>
  898. <Operation>1</Operation>
  899. </Platform>
  900. <Platform Name="Win64">
  901. <RemoteDir>Assets</RemoteDir>
  902. <Operation>1</Operation>
  903. </Platform>
  904. </DeployClass>
  905. <DeployClass Name="UWP_DelphiLogo44">
  906. <Platform Name="Win32">
  907. <RemoteDir>Assets</RemoteDir>
  908. <Operation>1</Operation>
  909. </Platform>
  910. <Platform Name="Win64">
  911. <RemoteDir>Assets</RemoteDir>
  912. <Operation>1</Operation>
  913. </Platform>
  914. </DeployClass>
  915. <DeployClass Name="iOS_AppStore1024">
  916. <Platform Name="iOSDevice64">
  917. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  918. <Operation>1</Operation>
  919. </Platform>
  920. <Platform Name="iOSSimARM64">
  921. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  922. <Operation>1</Operation>
  923. </Platform>
  924. </DeployClass>
  925. <DeployClass Name="iPad_AppIcon152">
  926. <Platform Name="iOSDevice64">
  927. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  928. <Operation>1</Operation>
  929. </Platform>
  930. <Platform Name="iOSSimARM64">
  931. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  932. <Operation>1</Operation>
  933. </Platform>
  934. </DeployClass>
  935. <DeployClass Name="iPad_AppIcon167">
  936. <Platform Name="iOSDevice64">
  937. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  938. <Operation>1</Operation>
  939. </Platform>
  940. <Platform Name="iOSSimARM64">
  941. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  942. <Operation>1</Operation>
  943. </Platform>
  944. </DeployClass>
  945. <DeployClass Name="iPad_Launch2x">
  946. <Platform Name="iOSDevice64">
  947. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  948. <Operation>1</Operation>
  949. </Platform>
  950. <Platform Name="iOSSimARM64">
  951. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  952. <Operation>1</Operation>
  953. </Platform>
  954. </DeployClass>
  955. <DeployClass Name="iPad_LaunchDark2x">
  956. <Platform Name="iOSDevice64">
  957. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  958. <Operation>1</Operation>
  959. </Platform>
  960. <Platform Name="iOSSimARM64">
  961. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  962. <Operation>1</Operation>
  963. </Platform>
  964. </DeployClass>
  965. <DeployClass Name="iPad_Notification40">
  966. <Platform Name="iOSDevice64">
  967. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  968. <Operation>1</Operation>
  969. </Platform>
  970. <Platform Name="iOSSimARM64">
  971. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  972. <Operation>1</Operation>
  973. </Platform>
  974. </DeployClass>
  975. <DeployClass Name="iPad_Setting58">
  976. <Platform Name="iOSDevice64">
  977. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  978. <Operation>1</Operation>
  979. </Platform>
  980. <Platform Name="iOSSimARM64">
  981. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  982. <Operation>1</Operation>
  983. </Platform>
  984. </DeployClass>
  985. <DeployClass Name="iPad_SpotLight80">
  986. <Platform Name="iOSDevice64">
  987. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  988. <Operation>1</Operation>
  989. </Platform>
  990. <Platform Name="iOSSimARM64">
  991. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  992. <Operation>1</Operation>
  993. </Platform>
  994. </DeployClass>
  995. <DeployClass Name="iPhone_AppIcon120">
  996. <Platform Name="iOSDevice64">
  997. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  998. <Operation>1</Operation>
  999. </Platform>
  1000. <Platform Name="iOSSimARM64">
  1001. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1002. <Operation>1</Operation>
  1003. </Platform>
  1004. </DeployClass>
  1005. <DeployClass Name="iPhone_AppIcon180">
  1006. <Platform Name="iOSDevice64">
  1007. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1008. <Operation>1</Operation>
  1009. </Platform>
  1010. <Platform Name="iOSSimARM64">
  1011. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1012. <Operation>1</Operation>
  1013. </Platform>
  1014. </DeployClass>
  1015. <DeployClass Name="iPhone_Launch2x">
  1016. <Platform Name="iOSDevice64">
  1017. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1018. <Operation>1</Operation>
  1019. </Platform>
  1020. <Platform Name="iOSSimARM64">
  1021. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1022. <Operation>1</Operation>
  1023. </Platform>
  1024. </DeployClass>
  1025. <DeployClass Name="iPhone_Launch3x">
  1026. <Platform Name="iOSDevice64">
  1027. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1028. <Operation>1</Operation>
  1029. </Platform>
  1030. <Platform Name="iOSSimARM64">
  1031. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1032. <Operation>1</Operation>
  1033. </Platform>
  1034. </DeployClass>
  1035. <DeployClass Name="iPhone_LaunchDark2x">
  1036. <Platform Name="iOSDevice64">
  1037. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1038. <Operation>1</Operation>
  1039. </Platform>
  1040. <Platform Name="iOSSimARM64">
  1041. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1042. <Operation>1</Operation>
  1043. </Platform>
  1044. </DeployClass>
  1045. <DeployClass Name="iPhone_LaunchDark3x">
  1046. <Platform Name="iOSDevice64">
  1047. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1048. <Operation>1</Operation>
  1049. </Platform>
  1050. <Platform Name="iOSSimARM64">
  1051. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1052. <Operation>1</Operation>
  1053. </Platform>
  1054. </DeployClass>
  1055. <DeployClass Name="iPhone_Notification40">
  1056. <Platform Name="iOSDevice64">
  1057. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1058. <Operation>1</Operation>
  1059. </Platform>
  1060. <Platform Name="iOSSimARM64">
  1061. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1062. <Operation>1</Operation>
  1063. </Platform>
  1064. </DeployClass>
  1065. <DeployClass Name="iPhone_Notification60">
  1066. <Platform Name="iOSDevice64">
  1067. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1068. <Operation>1</Operation>
  1069. </Platform>
  1070. <Platform Name="iOSSimARM64">
  1071. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1072. <Operation>1</Operation>
  1073. </Platform>
  1074. </DeployClass>
  1075. <DeployClass Name="iPhone_Setting58">
  1076. <Platform Name="iOSDevice64">
  1077. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1078. <Operation>1</Operation>
  1079. </Platform>
  1080. <Platform Name="iOSSimARM64">
  1081. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1082. <Operation>1</Operation>
  1083. </Platform>
  1084. </DeployClass>
  1085. <DeployClass Name="iPhone_Setting87">
  1086. <Platform Name="iOSDevice64">
  1087. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1088. <Operation>1</Operation>
  1089. </Platform>
  1090. <Platform Name="iOSSimARM64">
  1091. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1092. <Operation>1</Operation>
  1093. </Platform>
  1094. </DeployClass>
  1095. <DeployClass Name="iPhone_Spotlight120">
  1096. <Platform Name="iOSDevice64">
  1097. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1098. <Operation>1</Operation>
  1099. </Platform>
  1100. <Platform Name="iOSSimARM64">
  1101. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1102. <Operation>1</Operation>
  1103. </Platform>
  1104. </DeployClass>
  1105. <DeployClass Name="iPhone_Spotlight80">
  1106. <Platform Name="iOSDevice64">
  1107. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1108. <Operation>1</Operation>
  1109. </Platform>
  1110. <Platform Name="iOSSimARM64">
  1111. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1112. <Operation>1</Operation>
  1113. </Platform>
  1114. </DeployClass>
  1115. <ProjectRoot Platform="Android" Name="$(PROJECTNAME)"/>
  1116. <ProjectRoot Platform="Android64" Name="$(PROJECTNAME)"/>
  1117. <ProjectRoot Platform="iOSDevice32" Name="$(PROJECTNAME).app"/>
  1118. <ProjectRoot Platform="iOSDevice64" Name="$(PROJECTNAME).app"/>
  1119. <ProjectRoot Platform="iOSSimARM64" Name="$(PROJECTNAME).app"/>
  1120. <ProjectRoot Platform="Linux64" Name="$(PROJECTNAME)"/>
  1121. <ProjectRoot Platform="OSX32" Name="$(PROJECTNAME).app"/>
  1122. <ProjectRoot Platform="OSX64" Name="$(PROJECTNAME).app"/>
  1123. <ProjectRoot Platform="OSXARM64" Name="$(PROJECTNAME).app"/>
  1124. <ProjectRoot Platform="Win32" Name="$(PROJECTNAME)"/>
  1125. <ProjectRoot Platform="Win64" Name="$(PROJECTNAME)"/>
  1126. <ProjectRoot Platform="Win64x" Name="$(PROJECTNAME)"/>
  1127. </Deployment>
  1128. </BorlandProject>
  1129. <ProjectFileVersion>12</ProjectFileVersion>
  1130. </ProjectExtensions>
  1131. <Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
  1132. <Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
  1133. <Import Project="$(MSBuildProjectName).deployproj" Condition="Exists('$(MSBuildProjectName).deployproj')"/>
  1134. </Project>