2
0

ConfigToJSON.dproj 54 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045
  1. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <ProjectGuid>{CDEBAD41-A241-457F-96FD-E367D8E3B0AE}</ProjectGuid>
  4. <ProjectVersion>19.1</ProjectVersion>
  5. <FrameworkType>VCL</FrameworkType>
  6. <MainSource>ConfigToJSON.dpr</MainSource>
  7. <Base>True</Base>
  8. <Config Condition="'$(Config)'==''">Debug</Config>
  9. <Platform Condition="'$(Platform)'==''">Win64</Platform>
  10. <TargetedPlatforms>3</TargetedPlatforms>
  11. <AppType>Application</AppType>
  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)'=='Debug' or '$(Cfg_1)'!=''">
  27. <Cfg_1>true</Cfg_1>
  28. <CfgParent>Base</CfgParent>
  29. <Base>true</Base>
  30. </PropertyGroup>
  31. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''">
  32. <Cfg_1_Win32>true</Cfg_1_Win32>
  33. <CfgParent>Cfg_1</CfgParent>
  34. <Cfg_1>true</Cfg_1>
  35. <Base>true</Base>
  36. </PropertyGroup>
  37. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win64)'!=''">
  38. <Cfg_1_Win64>true</Cfg_1_Win64>
  39. <CfgParent>Cfg_1</CfgParent>
  40. <Cfg_1>true</Cfg_1>
  41. <Base>true</Base>
  42. </PropertyGroup>
  43. <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
  44. <Cfg_2>true</Cfg_2>
  45. <CfgParent>Base</CfgParent>
  46. <Base>true</Base>
  47. </PropertyGroup>
  48. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''">
  49. <Cfg_2_Win32>true</Cfg_2_Win32>
  50. <CfgParent>Cfg_2</CfgParent>
  51. <Cfg_2>true</Cfg_2>
  52. <Base>true</Base>
  53. </PropertyGroup>
  54. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win64)'!=''">
  55. <Cfg_2_Win64>true</Cfg_2_Win64>
  56. <CfgParent>Cfg_2</CfgParent>
  57. <Cfg_2>true</Cfg_2>
  58. <Base>true</Base>
  59. </PropertyGroup>
  60. <PropertyGroup Condition="'$(Base)'!=''">
  61. <DCC_DcuOutput>.\bin\$(Platform)\$(Config)\dcu</DCC_DcuOutput>
  62. <DCC_ExeOutput>.\bin\$(Platform)\$(Config)</DCC_ExeOutput>
  63. <DCC_E>false</DCC_E>
  64. <DCC_N>false</DCC_N>
  65. <DCC_S>false</DCC_S>
  66. <DCC_F>false</DCC_F>
  67. <DCC_K>false</DCC_K>
  68. <DCC_UsePackage>RESTComponents;FireDACIBDriver;FireDACCommon;RESTBackendComponents;soapserver;CloudService;FireDACCommonDriver;inet;FireDAC;FireDACSqliteDriver;soaprtl;soapmidas;$(DCC_UsePackage)</DCC_UsePackage>
  69. <DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;$(DCC_Namespace)</DCC_Namespace>
  70. <Icon_MainIcon>$(BDS)\bin\delphi_PROJECTICON.ico</Icon_MainIcon>
  71. <UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
  72. <UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
  73. <SanitizedProjectName>ConfigToJSON</SanitizedProjectName>
  74. <VerInfo_Locale>3082</VerInfo_Locale>
  75. <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>
  76. </PropertyGroup>
  77. <PropertyGroup Condition="'$(Base_Win32)'!=''">
  78. <DCC_UsePackage>DBXSqliteDriver;UbuntuProgressPackage;DBXInterBaseDriver;vclactnband;vclFireDAC;tethering;svnui;JvGlobus;FireDACADSDriver;JvPluginSystem;JvMM;vacommpkgdXE11;tmsxlsdXE11;vcltouch;JvBands;vcldb;bindcompfmx;svn;Intraweb;JvJans;JvNet;inetdb;JvAppFrm;EssentialsDR;vcwdedXE11;vcwdXE11;FmxTeeUI;JvDotNetCtrls;AbbreviaVCLD;fmx;fmxdae;tmsdXE11;vclib;JvWizards;tmsexdXE11;dbexpress;IndyCore;vclx;JvPageComps;dsnap;JvDB;VCLRESTComponents;JclDeveloperTools;vclie;bindengine;DBXMySQLDriver;JvCmp;FireDACMySQLDriver;JvHMI;FireDACCommonODBC;LockBoxDR;bindcompdbx;IndyIPCommon;JvCustom;advchartdedxe11;vcl;IndyIPServer;GR32_D;JvXPCtrls;PngComponents;IndySystem;advchartdxe11;dsnapcon;FireDACMSAccDriver;fmxFireDAC;vclimg;vacommpkgdedXE11;TeeDB;Jcl;madBasic_;JvCore;JvCrypt;FireDACPgDriver;ibmonitor;FMXTee;SevenZippro;DbxCommonDriver;JvDlgs;JvRuntimeDesign;ibxpress;Tee;JvManagedThreads;xmlrtl;ibxbindings;fmxobj;vclwinx;JvTimeFramework;rtl;GR32_R;DbxClientDriver;QuickVCL;CustomIPTransport;vcldsnap;JvSystem;JvStdCtrls;DCEF_DX10;bindcomp;appanalytics;tmswizdXE11;CoolTrayIcon_D210_XE7;IndyIPClient;bindcompvcl;TeeUI;TMSFMXPackPkgDXE11;JvDocking;dbxcds;VclSmp;JvPascalInterpreter;adortl;JclVcl;Gauge3D;dsnapxml;dbrtl;inetdbxpress;IndyProtocols;JvControls;JvPrintPreview;Analog_XE7;JclContainers;fmxase;$(DCC_UsePackage)</DCC_UsePackage>
  79. <DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
  80. <BT_BuildType>Debug</BT_BuildType>
  81. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  82. <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>
  83. <VerInfo_Locale>1033</VerInfo_Locale>
  84. <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
  85. </PropertyGroup>
  86. <PropertyGroup Condition="'$(Base_Win64)'!=''">
  87. <DCC_UsePackage>DBXSqliteDriver;DBXInterBaseDriver;vclactnband;vclFireDAC;tethering;FireDACADSDriver;vcltouch;vcldb;bindcompfmx;Intraweb;inetdb;EssentialsDR;vcwdXE11;FmxTeeUI;AbbreviaVCLD;fmx;fmxdae;tmsdXE11;vclib;tmsexdXE11;dbexpress;IndyCore;vclx;dsnap;VCLRESTComponents;vclie;bindengine;DBXMySQLDriver;FireDACMySQLDriver;FireDACCommonODBC;bindcompdbx;IndyIPCommon;vcl;IndyIPServer;IndySystem;advchartdxe11;dsnapcon;FireDACMSAccDriver;fmxFireDAC;vclimg;TeeDB;FireDACPgDriver;ibmonitor;FMXTee;DbxCommonDriver;ibxpress;Tee;xmlrtl;ibxbindings;fmxobj;vclwinx;rtl;DbxClientDriver;QuickVCL;CustomIPTransport;vcldsnap;DCEF_DX10;bindcomp;appanalytics;IndyIPClient;bindcompvcl;TeeUI;dbxcds;VclSmp;adortl;dsnapxml;dbrtl;inetdbxpress;IndyProtocols;fmxase;$(DCC_UsePackage)</DCC_UsePackage>
  88. <DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
  89. <BT_BuildType>Debug</BT_BuildType>
  90. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  91. <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>
  92. <VerInfo_Locale>1033</VerInfo_Locale>
  93. <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
  94. </PropertyGroup>
  95. <PropertyGroup Condition="'$(Cfg_1)'!=''">
  96. <DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
  97. <DCC_DebugDCUs>true</DCC_DebugDCUs>
  98. <DCC_Optimize>false</DCC_Optimize>
  99. <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
  100. <DCC_DebugInfoInExe>true</DCC_DebugInfoInExe>
  101. <DCC_RemoteDebug>true</DCC_RemoteDebug>
  102. </PropertyGroup>
  103. <PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
  104. <DCC_RemoteDebug>false</DCC_RemoteDebug>
  105. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  106. <AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
  107. </PropertyGroup>
  108. <PropertyGroup Condition="'$(Cfg_1_Win64)'!=''">
  109. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  110. <AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
  111. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  112. <VerInfo_Locale>1033</VerInfo_Locale>
  113. </PropertyGroup>
  114. <PropertyGroup Condition="'$(Cfg_2)'!=''">
  115. <DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
  116. <DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
  117. <DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
  118. <DCC_DebugInformation>0</DCC_DebugInformation>
  119. </PropertyGroup>
  120. <PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
  121. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  122. <AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
  123. </PropertyGroup>
  124. <PropertyGroup Condition="'$(Cfg_2_Win64)'!=''">
  125. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  126. <AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
  127. </PropertyGroup>
  128. <ItemGroup>
  129. <DelphiCompile Include="$(MainSource)">
  130. <MainSource>MainSource</MainSource>
  131. </DelphiCompile>
  132. <DCCReference Include="Main.pas">
  133. <Form>MainForm</Form>
  134. <FormType>dfm</FormType>
  135. </DCCReference>
  136. <BuildConfiguration Include="Release">
  137. <Key>Cfg_2</Key>
  138. <CfgParent>Base</CfgParent>
  139. </BuildConfiguration>
  140. <BuildConfiguration Include="Base">
  141. <Key>Base</Key>
  142. </BuildConfiguration>
  143. <BuildConfiguration Include="Debug">
  144. <Key>Cfg_1</Key>
  145. <CfgParent>Base</CfgParent>
  146. </BuildConfiguration>
  147. </ItemGroup>
  148. <ProjectExtensions>
  149. <Borland.Personality>Delphi.Personality.12</Borland.Personality>
  150. <Borland.ProjectType>Application</Borland.ProjectType>
  151. <BorlandProject>
  152. <Delphi.Personality>
  153. <Source>
  154. <Source Name="MainSource">ConfigToJSON.dpr</Source>
  155. </Source>
  156. <Excluded_Packages>
  157. <Excluded_Packages Name="$(BDSBIN)\DataExplorerDBXPluginEnt260.bpl">DBExpress Enterprise Data Explorer Integration</Excluded_Packages>
  158. <Excluded_Packages Name="$(BDSBIN)\bcboffice2k260.bpl">Embarcadero C++Builder Office 2000 Servers Package</Excluded_Packages>
  159. <Excluded_Packages Name="$(BDSBIN)\bcbofficexp260.bpl">Embarcadero C++Builder Office XP Servers Package</Excluded_Packages>
  160. <Excluded_Packages Name="$(BDSBIN)\dcloffice2k260.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
  161. <Excluded_Packages Name="$(BDSBIN)\dclofficexp260.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
  162. <Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl\AdvChartDXE12.bpl">File C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl\AdvChartDXE12.bpl not found</Excluded_Packages>
  163. <Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl\AdvChartDEDXE12.bpl">File C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl\AdvChartDEDXE12.bpl not found</Excluded_Packages>
  164. <Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl\vcwDXE12.bpl">File C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl\vcwDXE12.bpl not found</Excluded_Packages>
  165. <Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl\vcwdeDXE12.bpl">File C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl\vcwdeDXE12.bpl not found</Excluded_Packages>
  166. <Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl\TMSFMXPackPkgDEDXE12.bpl">File C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl\TMSFMXPackPkgDEDXE12.bpl not found</Excluded_Packages>
  167. </Excluded_Packages>
  168. </Delphi.Personality>
  169. <Deployment Version="3">
  170. <DeployFile LocalName="bin\Win64\Debug\ConfigToJSON.exe" Configuration="Debug" Class="ProjectOutput">
  171. <Platform Name="Win64">
  172. <RemoteName>ConfigToJSON.exe</RemoteName>
  173. <Overwrite>true</Overwrite>
  174. </Platform>
  175. </DeployFile>
  176. <DeployFile LocalName="Win32\Debug\ConfigToJSON.exe" Configuration="Debug" Class="ProjectOutput">
  177. <Platform Name="Win32">
  178. <RemoteName>ConfigToJSON.exe</RemoteName>
  179. <Overwrite>true</Overwrite>
  180. </Platform>
  181. </DeployFile>
  182. <DeployFile LocalName="bin\Win64\Debug\ConfigToJSON.rsm" Configuration="Debug" Class="DebugSymbols">
  183. <Platform Name="Win64">
  184. <RemoteName>ConfigToJSON.rsm</RemoteName>
  185. <Overwrite>true</Overwrite>
  186. </Platform>
  187. </DeployFile>
  188. <DeployClass Name="AdditionalDebugSymbols">
  189. <Platform Name="iOSSimulator">
  190. <Operation>1</Operation>
  191. </Platform>
  192. <Platform Name="OSX32">
  193. <RemoteDir>Contents\MacOS</RemoteDir>
  194. <Operation>1</Operation>
  195. </Platform>
  196. <Platform Name="Win32">
  197. <Operation>0</Operation>
  198. </Platform>
  199. </DeployClass>
  200. <DeployClass Name="AndroidClassesDexFile">
  201. <Platform Name="Android">
  202. <RemoteDir>classes</RemoteDir>
  203. <Operation>1</Operation>
  204. </Platform>
  205. <Platform Name="Android64">
  206. <RemoteDir>classes</RemoteDir>
  207. <Operation>1</Operation>
  208. </Platform>
  209. </DeployClass>
  210. <DeployClass Name="AndroidFileProvider">
  211. <Platform Name="Android">
  212. <RemoteDir>res\xml</RemoteDir>
  213. <Operation>1</Operation>
  214. </Platform>
  215. <Platform Name="Android64">
  216. <RemoteDir>res\xml</RemoteDir>
  217. <Operation>1</Operation>
  218. </Platform>
  219. </DeployClass>
  220. <DeployClass Name="AndroidGDBServer">
  221. <Platform Name="Android">
  222. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  223. <Operation>1</Operation>
  224. </Platform>
  225. </DeployClass>
  226. <DeployClass Name="AndroidLibnativeArmeabiFile">
  227. <Platform Name="Android">
  228. <RemoteDir>library\lib\armeabi</RemoteDir>
  229. <Operation>1</Operation>
  230. </Platform>
  231. <Platform Name="Android64">
  232. <RemoteDir>library\lib\armeabi</RemoteDir>
  233. <Operation>1</Operation>
  234. </Platform>
  235. </DeployClass>
  236. <DeployClass Name="AndroidLibnativeArmeabiv7aFile">
  237. <Platform Name="Android64">
  238. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  239. <Operation>1</Operation>
  240. </Platform>
  241. </DeployClass>
  242. <DeployClass Name="AndroidLibnativeMipsFile">
  243. <Platform Name="Android">
  244. <RemoteDir>library\lib\mips</RemoteDir>
  245. <Operation>1</Operation>
  246. </Platform>
  247. <Platform Name="Android64">
  248. <RemoteDir>library\lib\mips</RemoteDir>
  249. <Operation>1</Operation>
  250. </Platform>
  251. </DeployClass>
  252. <DeployClass Name="AndroidServiceOutput">
  253. <Platform Name="Android">
  254. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  255. <Operation>1</Operation>
  256. </Platform>
  257. <Platform Name="Android64">
  258. <RemoteDir>library\lib\arm64-v8a</RemoteDir>
  259. <Operation>1</Operation>
  260. </Platform>
  261. </DeployClass>
  262. <DeployClass Name="AndroidServiceOutput_Android32">
  263. <Platform Name="Android64">
  264. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  265. <Operation>1</Operation>
  266. </Platform>
  267. </DeployClass>
  268. <DeployClass Name="AndroidSplashImageDef">
  269. <Platform Name="Android">
  270. <RemoteDir>res\drawable</RemoteDir>
  271. <Operation>1</Operation>
  272. </Platform>
  273. <Platform Name="Android64">
  274. <RemoteDir>res\drawable</RemoteDir>
  275. <Operation>1</Operation>
  276. </Platform>
  277. </DeployClass>
  278. <DeployClass Name="AndroidSplashStyles">
  279. <Platform Name="Android">
  280. <RemoteDir>res\values</RemoteDir>
  281. <Operation>1</Operation>
  282. </Platform>
  283. <Platform Name="Android64">
  284. <RemoteDir>res\values</RemoteDir>
  285. <Operation>1</Operation>
  286. </Platform>
  287. </DeployClass>
  288. <DeployClass Name="AndroidSplashStylesV21">
  289. <Platform Name="Android">
  290. <RemoteDir>res\values-v21</RemoteDir>
  291. <Operation>1</Operation>
  292. </Platform>
  293. <Platform Name="Android64">
  294. <RemoteDir>res\values-v21</RemoteDir>
  295. <Operation>1</Operation>
  296. </Platform>
  297. </DeployClass>
  298. <DeployClass Name="Android_Colors">
  299. <Platform Name="Android">
  300. <RemoteDir>res\values</RemoteDir>
  301. <Operation>1</Operation>
  302. </Platform>
  303. <Platform Name="Android64">
  304. <RemoteDir>res\values</RemoteDir>
  305. <Operation>1</Operation>
  306. </Platform>
  307. </DeployClass>
  308. <DeployClass Name="Android_DefaultAppIcon">
  309. <Platform Name="Android">
  310. <RemoteDir>res\drawable</RemoteDir>
  311. <Operation>1</Operation>
  312. </Platform>
  313. <Platform Name="Android64">
  314. <RemoteDir>res\drawable</RemoteDir>
  315. <Operation>1</Operation>
  316. </Platform>
  317. </DeployClass>
  318. <DeployClass Name="Android_LauncherIcon144">
  319. <Platform Name="Android">
  320. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  321. <Operation>1</Operation>
  322. </Platform>
  323. <Platform Name="Android64">
  324. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  325. <Operation>1</Operation>
  326. </Platform>
  327. </DeployClass>
  328. <DeployClass Name="Android_LauncherIcon36">
  329. <Platform Name="Android">
  330. <RemoteDir>res\drawable-ldpi</RemoteDir>
  331. <Operation>1</Operation>
  332. </Platform>
  333. <Platform Name="Android64">
  334. <RemoteDir>res\drawable-ldpi</RemoteDir>
  335. <Operation>1</Operation>
  336. </Platform>
  337. </DeployClass>
  338. <DeployClass Name="Android_LauncherIcon48">
  339. <Platform Name="Android">
  340. <RemoteDir>res\drawable-mdpi</RemoteDir>
  341. <Operation>1</Operation>
  342. </Platform>
  343. <Platform Name="Android64">
  344. <RemoteDir>res\drawable-mdpi</RemoteDir>
  345. <Operation>1</Operation>
  346. </Platform>
  347. </DeployClass>
  348. <DeployClass Name="Android_LauncherIcon72">
  349. <Platform Name="Android">
  350. <RemoteDir>res\drawable-hdpi</RemoteDir>
  351. <Operation>1</Operation>
  352. </Platform>
  353. <Platform Name="Android64">
  354. <RemoteDir>res\drawable-hdpi</RemoteDir>
  355. <Operation>1</Operation>
  356. </Platform>
  357. </DeployClass>
  358. <DeployClass Name="Android_LauncherIcon96">
  359. <Platform Name="Android">
  360. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  361. <Operation>1</Operation>
  362. </Platform>
  363. <Platform Name="Android64">
  364. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  365. <Operation>1</Operation>
  366. </Platform>
  367. </DeployClass>
  368. <DeployClass Name="Android_NotificationIcon24">
  369. <Platform Name="Android">
  370. <RemoteDir>res\drawable-mdpi</RemoteDir>
  371. <Operation>1</Operation>
  372. </Platform>
  373. <Platform Name="Android64">
  374. <RemoteDir>res\drawable-mdpi</RemoteDir>
  375. <Operation>1</Operation>
  376. </Platform>
  377. </DeployClass>
  378. <DeployClass Name="Android_NotificationIcon36">
  379. <Platform Name="Android">
  380. <RemoteDir>res\drawable-hdpi</RemoteDir>
  381. <Operation>1</Operation>
  382. </Platform>
  383. <Platform Name="Android64">
  384. <RemoteDir>res\drawable-hdpi</RemoteDir>
  385. <Operation>1</Operation>
  386. </Platform>
  387. </DeployClass>
  388. <DeployClass Name="Android_NotificationIcon48">
  389. <Platform Name="Android">
  390. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  391. <Operation>1</Operation>
  392. </Platform>
  393. <Platform Name="Android64">
  394. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  395. <Operation>1</Operation>
  396. </Platform>
  397. </DeployClass>
  398. <DeployClass Name="Android_NotificationIcon72">
  399. <Platform Name="Android">
  400. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  401. <Operation>1</Operation>
  402. </Platform>
  403. <Platform Name="Android64">
  404. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  405. <Operation>1</Operation>
  406. </Platform>
  407. </DeployClass>
  408. <DeployClass Name="Android_NotificationIcon96">
  409. <Platform Name="Android">
  410. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  411. <Operation>1</Operation>
  412. </Platform>
  413. <Platform Name="Android64">
  414. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  415. <Operation>1</Operation>
  416. </Platform>
  417. </DeployClass>
  418. <DeployClass Name="Android_SplashImage426">
  419. <Platform Name="Android">
  420. <RemoteDir>res\drawable-small</RemoteDir>
  421. <Operation>1</Operation>
  422. </Platform>
  423. <Platform Name="Android64">
  424. <RemoteDir>res\drawable-small</RemoteDir>
  425. <Operation>1</Operation>
  426. </Platform>
  427. </DeployClass>
  428. <DeployClass Name="Android_SplashImage470">
  429. <Platform Name="Android">
  430. <RemoteDir>res\drawable-normal</RemoteDir>
  431. <Operation>1</Operation>
  432. </Platform>
  433. <Platform Name="Android64">
  434. <RemoteDir>res\drawable-normal</RemoteDir>
  435. <Operation>1</Operation>
  436. </Platform>
  437. </DeployClass>
  438. <DeployClass Name="Android_SplashImage640">
  439. <Platform Name="Android">
  440. <RemoteDir>res\drawable-large</RemoteDir>
  441. <Operation>1</Operation>
  442. </Platform>
  443. <Platform Name="Android64">
  444. <RemoteDir>res\drawable-large</RemoteDir>
  445. <Operation>1</Operation>
  446. </Platform>
  447. </DeployClass>
  448. <DeployClass Name="Android_SplashImage960">
  449. <Platform Name="Android">
  450. <RemoteDir>res\drawable-xlarge</RemoteDir>
  451. <Operation>1</Operation>
  452. </Platform>
  453. <Platform Name="Android64">
  454. <RemoteDir>res\drawable-xlarge</RemoteDir>
  455. <Operation>1</Operation>
  456. </Platform>
  457. </DeployClass>
  458. <DeployClass Name="Android_Strings">
  459. <Platform Name="Android">
  460. <RemoteDir>res\values</RemoteDir>
  461. <Operation>1</Operation>
  462. </Platform>
  463. <Platform Name="Android64">
  464. <RemoteDir>res\values</RemoteDir>
  465. <Operation>1</Operation>
  466. </Platform>
  467. </DeployClass>
  468. <DeployClass Name="DebugSymbols">
  469. <Platform Name="iOSSimulator">
  470. <Operation>1</Operation>
  471. </Platform>
  472. <Platform Name="OSX32">
  473. <RemoteDir>Contents\MacOS</RemoteDir>
  474. <Operation>1</Operation>
  475. </Platform>
  476. <Platform Name="Win32">
  477. <Operation>0</Operation>
  478. </Platform>
  479. </DeployClass>
  480. <DeployClass Name="DependencyFramework">
  481. <Platform Name="OSX32">
  482. <RemoteDir>Contents\MacOS</RemoteDir>
  483. <Operation>1</Operation>
  484. <Extensions>.framework</Extensions>
  485. </Platform>
  486. <Platform Name="OSX64">
  487. <RemoteDir>Contents\MacOS</RemoteDir>
  488. <Operation>1</Operation>
  489. <Extensions>.framework</Extensions>
  490. </Platform>
  491. <Platform Name="Win32">
  492. <Operation>0</Operation>
  493. </Platform>
  494. </DeployClass>
  495. <DeployClass Name="DependencyModule">
  496. <Platform Name="iOSDevice32">
  497. <Operation>1</Operation>
  498. <Extensions>.dylib</Extensions>
  499. </Platform>
  500. <Platform Name="iOSDevice64">
  501. <Operation>1</Operation>
  502. <Extensions>.dylib</Extensions>
  503. </Platform>
  504. <Platform Name="iOSSimulator">
  505. <Operation>1</Operation>
  506. <Extensions>.dylib</Extensions>
  507. </Platform>
  508. <Platform Name="OSX32">
  509. <RemoteDir>Contents\MacOS</RemoteDir>
  510. <Operation>1</Operation>
  511. <Extensions>.dylib</Extensions>
  512. </Platform>
  513. <Platform Name="OSX64">
  514. <RemoteDir>Contents\MacOS</RemoteDir>
  515. <Operation>1</Operation>
  516. <Extensions>.dylib</Extensions>
  517. </Platform>
  518. <Platform Name="Win32">
  519. <Operation>0</Operation>
  520. <Extensions>.dll;.bpl</Extensions>
  521. </Platform>
  522. </DeployClass>
  523. <DeployClass Required="true" Name="DependencyPackage">
  524. <Platform Name="iOSDevice32">
  525. <Operation>1</Operation>
  526. <Extensions>.dylib</Extensions>
  527. </Platform>
  528. <Platform Name="iOSDevice64">
  529. <Operation>1</Operation>
  530. <Extensions>.dylib</Extensions>
  531. </Platform>
  532. <Platform Name="iOSSimulator">
  533. <Operation>1</Operation>
  534. <Extensions>.dylib</Extensions>
  535. </Platform>
  536. <Platform Name="OSX32">
  537. <RemoteDir>Contents\MacOS</RemoteDir>
  538. <Operation>1</Operation>
  539. <Extensions>.dylib</Extensions>
  540. </Platform>
  541. <Platform Name="OSX64">
  542. <RemoteDir>Contents\MacOS</RemoteDir>
  543. <Operation>1</Operation>
  544. <Extensions>.dylib</Extensions>
  545. </Platform>
  546. <Platform Name="Win32">
  547. <Operation>0</Operation>
  548. <Extensions>.bpl</Extensions>
  549. </Platform>
  550. </DeployClass>
  551. <DeployClass Name="File">
  552. <Platform Name="Android">
  553. <Operation>0</Operation>
  554. </Platform>
  555. <Platform Name="Android64">
  556. <Operation>0</Operation>
  557. </Platform>
  558. <Platform Name="iOSDevice32">
  559. <Operation>0</Operation>
  560. </Platform>
  561. <Platform Name="iOSDevice64">
  562. <Operation>0</Operation>
  563. </Platform>
  564. <Platform Name="iOSSimulator">
  565. <Operation>0</Operation>
  566. </Platform>
  567. <Platform Name="OSX32">
  568. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  569. <Operation>0</Operation>
  570. </Platform>
  571. <Platform Name="OSX64">
  572. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  573. <Operation>0</Operation>
  574. </Platform>
  575. <Platform Name="Win32">
  576. <Operation>0</Operation>
  577. </Platform>
  578. </DeployClass>
  579. <DeployClass Name="iOS_AppStore1024">
  580. <Platform Name="iOSDevice64">
  581. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  582. <Operation>1</Operation>
  583. </Platform>
  584. </DeployClass>
  585. <DeployClass Name="iPad_AppIcon152">
  586. <Platform Name="iOSDevice64">
  587. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  588. <Operation>1</Operation>
  589. </Platform>
  590. <Platform Name="iOSSimulator">
  591. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  592. <Operation>1</Operation>
  593. </Platform>
  594. </DeployClass>
  595. <DeployClass Name="iPad_AppIcon167">
  596. <Platform Name="iOSDevice64">
  597. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  598. <Operation>1</Operation>
  599. </Platform>
  600. <Platform Name="iOSSimulator">
  601. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  602. <Operation>1</Operation>
  603. </Platform>
  604. </DeployClass>
  605. <DeployClass Name="iPad_Launch1024">
  606. <Platform Name="iOSDevice32">
  607. <Operation>1</Operation>
  608. </Platform>
  609. <Platform Name="iOSDevice64">
  610. <Operation>1</Operation>
  611. </Platform>
  612. <Platform Name="iOSSimulator">
  613. <Operation>1</Operation>
  614. </Platform>
  615. </DeployClass>
  616. <DeployClass Name="iPad_Launch1536">
  617. <Platform Name="iOSDevice32">
  618. <Operation>1</Operation>
  619. </Platform>
  620. <Platform Name="iOSDevice64">
  621. <Operation>1</Operation>
  622. </Platform>
  623. <Platform Name="iOSSimulator">
  624. <Operation>1</Operation>
  625. </Platform>
  626. </DeployClass>
  627. <DeployClass Name="iPad_Launch2048">
  628. <Platform Name="iOSDevice32">
  629. <Operation>1</Operation>
  630. </Platform>
  631. <Platform Name="iOSDevice64">
  632. <Operation>1</Operation>
  633. </Platform>
  634. <Platform Name="iOSSimulator">
  635. <Operation>1</Operation>
  636. </Platform>
  637. </DeployClass>
  638. <DeployClass Name="iPad_Launch2x">
  639. <Platform Name="iOSDevice64">
  640. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  641. <Operation>1</Operation>
  642. </Platform>
  643. <Platform Name="iOSSimulator">
  644. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  645. <Operation>1</Operation>
  646. </Platform>
  647. </DeployClass>
  648. <DeployClass Name="iPad_Launch768">
  649. <Platform Name="iOSDevice32">
  650. <Operation>1</Operation>
  651. </Platform>
  652. <Platform Name="iOSDevice64">
  653. <Operation>1</Operation>
  654. </Platform>
  655. <Platform Name="iOSSimulator">
  656. <Operation>1</Operation>
  657. </Platform>
  658. </DeployClass>
  659. <DeployClass Name="iPad_LaunchDark2x">
  660. <Platform Name="iOSDevice64">
  661. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  662. <Operation>1</Operation>
  663. </Platform>
  664. <Platform Name="iOSSimulator">
  665. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  666. <Operation>1</Operation>
  667. </Platform>
  668. </DeployClass>
  669. <DeployClass Name="iPad_Notification40">
  670. <Platform Name="iOSDevice64">
  671. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  672. <Operation>1</Operation>
  673. </Platform>
  674. <Platform Name="iOSSimulator">
  675. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  676. <Operation>1</Operation>
  677. </Platform>
  678. </DeployClass>
  679. <DeployClass Name="iPad_Setting58">
  680. <Platform Name="iOSDevice64">
  681. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  682. <Operation>1</Operation>
  683. </Platform>
  684. <Platform Name="iOSSimulator">
  685. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  686. <Operation>1</Operation>
  687. </Platform>
  688. </DeployClass>
  689. <DeployClass Name="iPad_SpotLight80">
  690. <Platform Name="iOSDevice64">
  691. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  692. <Operation>1</Operation>
  693. </Platform>
  694. <Platform Name="iOSSimulator">
  695. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  696. <Operation>1</Operation>
  697. </Platform>
  698. </DeployClass>
  699. <DeployClass Name="iPhone_AppIcon120">
  700. <Platform Name="iOSDevice64">
  701. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  702. <Operation>1</Operation>
  703. </Platform>
  704. <Platform Name="iOSSimulator">
  705. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  706. <Operation>1</Operation>
  707. </Platform>
  708. </DeployClass>
  709. <DeployClass Name="iPhone_AppIcon180">
  710. <Platform Name="iOSDevice64">
  711. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  712. <Operation>1</Operation>
  713. </Platform>
  714. <Platform Name="iOSSimulator">
  715. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  716. <Operation>1</Operation>
  717. </Platform>
  718. </DeployClass>
  719. <DeployClass Name="iPhone_Launch2x">
  720. <Platform Name="iOSDevice64">
  721. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  722. <Operation>1</Operation>
  723. </Platform>
  724. <Platform Name="iOSSimulator">
  725. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  726. <Operation>1</Operation>
  727. </Platform>
  728. </DeployClass>
  729. <DeployClass Name="iPhone_Launch320">
  730. <Platform Name="iOSDevice32">
  731. <Operation>1</Operation>
  732. </Platform>
  733. <Platform Name="iOSDevice64">
  734. <Operation>1</Operation>
  735. </Platform>
  736. <Platform Name="iOSSimulator">
  737. <Operation>1</Operation>
  738. </Platform>
  739. </DeployClass>
  740. <DeployClass Name="iPhone_Launch3x">
  741. <Platform Name="iOSDevice64">
  742. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  743. <Operation>1</Operation>
  744. </Platform>
  745. <Platform Name="iOSSimulator">
  746. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  747. <Operation>1</Operation>
  748. </Platform>
  749. </DeployClass>
  750. <DeployClass Name="iPhone_Launch640">
  751. <Platform Name="iOSDevice32">
  752. <Operation>1</Operation>
  753. </Platform>
  754. <Platform Name="iOSDevice64">
  755. <Operation>1</Operation>
  756. </Platform>
  757. <Platform Name="iOSSimulator">
  758. <Operation>1</Operation>
  759. </Platform>
  760. </DeployClass>
  761. <DeployClass Name="iPhone_Launch640x1136">
  762. <Platform Name="iOSDevice32">
  763. <Operation>1</Operation>
  764. </Platform>
  765. <Platform Name="iOSDevice64">
  766. <Operation>1</Operation>
  767. </Platform>
  768. <Platform Name="iOSSimulator">
  769. <Operation>1</Operation>
  770. </Platform>
  771. </DeployClass>
  772. <DeployClass Name="iPhone_LaunchDark2x">
  773. <Platform Name="iOSDevice64">
  774. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  775. <Operation>1</Operation>
  776. </Platform>
  777. <Platform Name="iOSSimulator">
  778. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  779. <Operation>1</Operation>
  780. </Platform>
  781. </DeployClass>
  782. <DeployClass Name="iPhone_LaunchDark3x">
  783. <Platform Name="iOSDevice64">
  784. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  785. <Operation>1</Operation>
  786. </Platform>
  787. <Platform Name="iOSSimulator">
  788. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  789. <Operation>1</Operation>
  790. </Platform>
  791. </DeployClass>
  792. <DeployClass Name="iPhone_Notification40">
  793. <Platform Name="iOSDevice64">
  794. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  795. <Operation>1</Operation>
  796. </Platform>
  797. <Platform Name="iOSSimulator">
  798. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  799. <Operation>1</Operation>
  800. </Platform>
  801. </DeployClass>
  802. <DeployClass Name="iPhone_Notification60">
  803. <Platform Name="iOSDevice64">
  804. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  805. <Operation>1</Operation>
  806. </Platform>
  807. <Platform Name="iOSSimulator">
  808. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  809. <Operation>1</Operation>
  810. </Platform>
  811. </DeployClass>
  812. <DeployClass Name="iPhone_Setting58">
  813. <Platform Name="iOSDevice64">
  814. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  815. <Operation>1</Operation>
  816. </Platform>
  817. <Platform Name="iOSSimulator">
  818. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  819. <Operation>1</Operation>
  820. </Platform>
  821. </DeployClass>
  822. <DeployClass Name="iPhone_Setting87">
  823. <Platform Name="iOSDevice64">
  824. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  825. <Operation>1</Operation>
  826. </Platform>
  827. <Platform Name="iOSSimulator">
  828. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  829. <Operation>1</Operation>
  830. </Platform>
  831. </DeployClass>
  832. <DeployClass Name="iPhone_Spotlight120">
  833. <Platform Name="iOSDevice64">
  834. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  835. <Operation>1</Operation>
  836. </Platform>
  837. <Platform Name="iOSSimulator">
  838. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  839. <Operation>1</Operation>
  840. </Platform>
  841. </DeployClass>
  842. <DeployClass Name="iPhone_Spotlight80">
  843. <Platform Name="iOSDevice64">
  844. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  845. <Operation>1</Operation>
  846. </Platform>
  847. <Platform Name="iOSSimulator">
  848. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  849. <Operation>1</Operation>
  850. </Platform>
  851. </DeployClass>
  852. <DeployClass Name="ProjectAndroidManifest">
  853. <Platform Name="Android">
  854. <Operation>1</Operation>
  855. </Platform>
  856. <Platform Name="Android64">
  857. <Operation>1</Operation>
  858. </Platform>
  859. </DeployClass>
  860. <DeployClass Name="ProjectiOSDeviceDebug">
  861. <Platform Name="iOSDevice32">
  862. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  863. <Operation>1</Operation>
  864. </Platform>
  865. <Platform Name="iOSDevice64">
  866. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  867. <Operation>1</Operation>
  868. </Platform>
  869. </DeployClass>
  870. <DeployClass Name="ProjectiOSDeviceResourceRules">
  871. <Platform Name="iOSDevice32">
  872. <Operation>1</Operation>
  873. </Platform>
  874. <Platform Name="iOSDevice64">
  875. <Operation>1</Operation>
  876. </Platform>
  877. </DeployClass>
  878. <DeployClass Name="ProjectiOSEntitlements">
  879. <Platform Name="iOSDevice32">
  880. <RemoteDir>..\</RemoteDir>
  881. <Operation>1</Operation>
  882. </Platform>
  883. <Platform Name="iOSDevice64">
  884. <RemoteDir>..\</RemoteDir>
  885. <Operation>1</Operation>
  886. </Platform>
  887. </DeployClass>
  888. <DeployClass Name="ProjectiOSInfoPList">
  889. <Platform Name="iOSDevice32">
  890. <Operation>1</Operation>
  891. </Platform>
  892. <Platform Name="iOSDevice64">
  893. <Operation>1</Operation>
  894. </Platform>
  895. <Platform Name="iOSSimulator">
  896. <Operation>1</Operation>
  897. </Platform>
  898. </DeployClass>
  899. <DeployClass Name="ProjectiOSLaunchScreen">
  900. <Platform Name="iOSDevice64">
  901. <RemoteDir>..\$(PROJECTNAME).launchscreen</RemoteDir>
  902. <Operation>64</Operation>
  903. </Platform>
  904. <Platform Name="iOSSimulator">
  905. <RemoteDir>..\$(PROJECTNAME).launchscreen</RemoteDir>
  906. <Operation>64</Operation>
  907. </Platform>
  908. </DeployClass>
  909. <DeployClass Name="ProjectiOSResource">
  910. <Platform Name="iOSDevice32">
  911. <Operation>1</Operation>
  912. </Platform>
  913. <Platform Name="iOSDevice64">
  914. <Operation>1</Operation>
  915. </Platform>
  916. <Platform Name="iOSSimulator">
  917. <Operation>1</Operation>
  918. </Platform>
  919. </DeployClass>
  920. <DeployClass Name="ProjectOSXDebug">
  921. <Platform Name="OSX64">
  922. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  923. <Operation>1</Operation>
  924. </Platform>
  925. </DeployClass>
  926. <DeployClass Name="ProjectOSXEntitlements">
  927. <Platform Name="OSX32">
  928. <RemoteDir>..\</RemoteDir>
  929. <Operation>1</Operation>
  930. </Platform>
  931. <Platform Name="OSX64">
  932. <RemoteDir>..\</RemoteDir>
  933. <Operation>1</Operation>
  934. </Platform>
  935. </DeployClass>
  936. <DeployClass Name="ProjectOSXInfoPList">
  937. <Platform Name="OSX32">
  938. <RemoteDir>Contents</RemoteDir>
  939. <Operation>1</Operation>
  940. </Platform>
  941. <Platform Name="OSX64">
  942. <RemoteDir>Contents</RemoteDir>
  943. <Operation>1</Operation>
  944. </Platform>
  945. </DeployClass>
  946. <DeployClass Name="ProjectOSXResource">
  947. <Platform Name="OSX32">
  948. <RemoteDir>Contents\Resources</RemoteDir>
  949. <Operation>1</Operation>
  950. </Platform>
  951. <Platform Name="OSX64">
  952. <RemoteDir>Contents\Resources</RemoteDir>
  953. <Operation>1</Operation>
  954. </Platform>
  955. </DeployClass>
  956. <DeployClass Required="true" Name="ProjectOutput">
  957. <Platform Name="Android">
  958. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  959. <Operation>1</Operation>
  960. </Platform>
  961. <Platform Name="Android64">
  962. <RemoteDir>library\lib\arm64-v8a</RemoteDir>
  963. <Operation>1</Operation>
  964. </Platform>
  965. <Platform Name="iOSDevice32">
  966. <Operation>1</Operation>
  967. </Platform>
  968. <Platform Name="iOSDevice64">
  969. <Operation>1</Operation>
  970. </Platform>
  971. <Platform Name="iOSSimulator">
  972. <Operation>1</Operation>
  973. </Platform>
  974. <Platform Name="Linux64">
  975. <Operation>1</Operation>
  976. </Platform>
  977. <Platform Name="OSX32">
  978. <RemoteDir>Contents\MacOS</RemoteDir>
  979. <Operation>1</Operation>
  980. </Platform>
  981. <Platform Name="OSX64">
  982. <RemoteDir>Contents\MacOS</RemoteDir>
  983. <Operation>1</Operation>
  984. </Platform>
  985. <Platform Name="Win32">
  986. <Operation>0</Operation>
  987. </Platform>
  988. </DeployClass>
  989. <DeployClass Name="ProjectOutput_Android32">
  990. <Platform Name="Android64">
  991. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  992. <Operation>1</Operation>
  993. </Platform>
  994. </DeployClass>
  995. <DeployClass Name="ProjectUWPManifest">
  996. <Platform Name="Win32">
  997. <Operation>1</Operation>
  998. </Platform>
  999. <Platform Name="Win64">
  1000. <Operation>1</Operation>
  1001. </Platform>
  1002. </DeployClass>
  1003. <DeployClass Name="UWP_DelphiLogo150">
  1004. <Platform Name="Win32">
  1005. <RemoteDir>Assets</RemoteDir>
  1006. <Operation>1</Operation>
  1007. </Platform>
  1008. <Platform Name="Win64">
  1009. <RemoteDir>Assets</RemoteDir>
  1010. <Operation>1</Operation>
  1011. </Platform>
  1012. </DeployClass>
  1013. <DeployClass Name="UWP_DelphiLogo44">
  1014. <Platform Name="Win32">
  1015. <RemoteDir>Assets</RemoteDir>
  1016. <Operation>1</Operation>
  1017. </Platform>
  1018. <Platform Name="Win64">
  1019. <RemoteDir>Assets</RemoteDir>
  1020. <Operation>1</Operation>
  1021. </Platform>
  1022. </DeployClass>
  1023. <ProjectRoot Platform="iOSDevice64" Name="$(PROJECTNAME).app"/>
  1024. <ProjectRoot Platform="Win64" Name="$(PROJECTNAME)"/>
  1025. <ProjectRoot Platform="iOSDevice32" Name="$(PROJECTNAME).app"/>
  1026. <ProjectRoot Platform="Linux64" Name="$(PROJECTNAME)"/>
  1027. <ProjectRoot Platform="Win32" Name="$(PROJECTNAME)"/>
  1028. <ProjectRoot Platform="OSX32" Name="$(PROJECTNAME).app"/>
  1029. <ProjectRoot Platform="Android" Name="$(PROJECTNAME)"/>
  1030. <ProjectRoot Platform="OSX64" Name="$(PROJECTNAME).app"/>
  1031. <ProjectRoot Platform="iOSSimulator" Name="$(PROJECTNAME).app"/>
  1032. <ProjectRoot Platform="Android64" Name="$(PROJECTNAME)"/>
  1033. </Deployment>
  1034. <Platforms>
  1035. <Platform value="Win32">True</Platform>
  1036. <Platform value="Win64">True</Platform>
  1037. </Platforms>
  1038. <ModelSupport>False</ModelSupport>
  1039. </BorlandProject>
  1040. <ProjectFileVersion>12</ProjectFileVersion>
  1041. </ProjectExtensions>
  1042. <Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
  1043. <Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
  1044. <Import Project="$(MSBuildProjectName).deployproj" Condition="Exists('$(MSBuildProjectName).deployproj')"/>
  1045. </Project>