PixelCombine.dproj 64 KB

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