JsonSerializer.dproj 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899
  1. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <ProjectGuid>{9C6576EF-31E8-4604-A9A1-B9FAC5DBF05A}</ProjectGuid>
  4. <MainSource>JsonSerializer.dpr</MainSource>
  5. <Base>True</Base>
  6. <Config Condition="'$(Config)'==''">Debug</Config>
  7. <TargetedPlatforms>7</TargetedPlatforms>
  8. <AppType>Application</AppType>
  9. <FrameworkType>FMX</FrameworkType>
  10. <ProjectVersion>18.6</ProjectVersion>
  11. <Platform Condition="'$(Platform)'==''">Win64</Platform>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
  14. <Base>true</Base>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="('$(Platform)'=='Android' and '$(Base)'=='true') or '$(Base_Android)'!=''">
  17. <Base_Android>true</Base_Android>
  18. <CfgParent>Base</CfgParent>
  19. <Base>true</Base>
  20. </PropertyGroup>
  21. <PropertyGroup Condition="('$(Platform)'=='iOSDevice32' and '$(Base)'=='true') or '$(Base_iOSDevice32)'!=''">
  22. <Base_iOSDevice32>true</Base_iOSDevice32>
  23. <CfgParent>Base</CfgParent>
  24. <Base>true</Base>
  25. </PropertyGroup>
  26. <PropertyGroup Condition="('$(Platform)'=='iOSDevice64' and '$(Base)'=='true') or '$(Base_iOSDevice64)'!=''">
  27. <Base_iOSDevice64>true</Base_iOSDevice64>
  28. <CfgParent>Base</CfgParent>
  29. <Base>true</Base>
  30. </PropertyGroup>
  31. <PropertyGroup Condition="('$(Platform)'=='iOSSimulator' and '$(Base)'=='true') or '$(Base_iOSSimulator)'!=''">
  32. <Base_iOSSimulator>true</Base_iOSSimulator>
  33. <CfgParent>Base</CfgParent>
  34. <Base>true</Base>
  35. </PropertyGroup>
  36. <PropertyGroup Condition="('$(Platform)'=='OSX32' and '$(Base)'=='true') or '$(Base_OSX32)'!=''">
  37. <Base_OSX32>true</Base_OSX32>
  38. <CfgParent>Base</CfgParent>
  39. <Base>true</Base>
  40. </PropertyGroup>
  41. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
  42. <Base_Win32>true</Base_Win32>
  43. <CfgParent>Base</CfgParent>
  44. <Base>true</Base>
  45. </PropertyGroup>
  46. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
  47. <Base_Win64>true</Base_Win64>
  48. <CfgParent>Base</CfgParent>
  49. <Base>true</Base>
  50. </PropertyGroup>
  51. <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''">
  52. <Cfg_1>true</Cfg_1>
  53. <CfgParent>Base</CfgParent>
  54. <Base>true</Base>
  55. </PropertyGroup>
  56. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''">
  57. <Cfg_1_Win32>true</Cfg_1_Win32>
  58. <CfgParent>Cfg_1</CfgParent>
  59. <Cfg_1>true</Cfg_1>
  60. <Base>true</Base>
  61. </PropertyGroup>
  62. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win64)'!=''">
  63. <Cfg_1_Win64>true</Cfg_1_Win64>
  64. <CfgParent>Cfg_1</CfgParent>
  65. <Cfg_1>true</Cfg_1>
  66. <Base>true</Base>
  67. </PropertyGroup>
  68. <PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''">
  69. <Cfg_2>true</Cfg_2>
  70. <CfgParent>Base</CfgParent>
  71. <Base>true</Base>
  72. </PropertyGroup>
  73. <PropertyGroup Condition="('$(Platform)'=='iOSDevice32' and '$(Cfg_2)'=='true') or '$(Cfg_2_iOSDevice32)'!=''">
  74. <Cfg_2_iOSDevice32>true</Cfg_2_iOSDevice32>
  75. <CfgParent>Cfg_2</CfgParent>
  76. <Cfg_2>true</Cfg_2>
  77. <Base>true</Base>
  78. </PropertyGroup>
  79. <PropertyGroup Condition="('$(Platform)'=='iOSDevice64' and '$(Cfg_2)'=='true') or '$(Cfg_2_iOSDevice64)'!=''">
  80. <Cfg_2_iOSDevice64>true</Cfg_2_iOSDevice64>
  81. <CfgParent>Cfg_2</CfgParent>
  82. <Cfg_2>true</Cfg_2>
  83. <Base>true</Base>
  84. </PropertyGroup>
  85. <PropertyGroup Condition="('$(Platform)'=='iOSSimulator' and '$(Cfg_2)'=='true') or '$(Cfg_2_iOSSimulator)'!=''">
  86. <Cfg_2_iOSSimulator>true</Cfg_2_iOSSimulator>
  87. <CfgParent>Cfg_2</CfgParent>
  88. <Cfg_2>true</Cfg_2>
  89. <Base>true</Base>
  90. </PropertyGroup>
  91. <PropertyGroup Condition="('$(Platform)'=='OSX32' and '$(Cfg_2)'=='true') or '$(Cfg_2_OSX32)'!=''">
  92. <Cfg_2_OSX32>true</Cfg_2_OSX32>
  93. <CfgParent>Cfg_2</CfgParent>
  94. <Cfg_2>true</Cfg_2>
  95. <Base>true</Base>
  96. </PropertyGroup>
  97. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''">
  98. <Cfg_2_Win32>true</Cfg_2_Win32>
  99. <CfgParent>Cfg_2</CfgParent>
  100. <Cfg_2>true</Cfg_2>
  101. <Base>true</Base>
  102. </PropertyGroup>
  103. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win64)'!=''">
  104. <Cfg_2_Win64>true</Cfg_2_Win64>
  105. <CfgParent>Cfg_2</CfgParent>
  106. <Cfg_2>true</Cfg_2>
  107. <Base>true</Base>
  108. </PropertyGroup>
  109. <PropertyGroup Condition="'$(Base)'!=''">
  110. <DCC_E>false</DCC_E>
  111. <DCC_F>false</DCC_F>
  112. <DCC_K>false</DCC_K>
  113. <DCC_N>false</DCC_N>
  114. <DCC_S>false</DCC_S>
  115. <DCC_ImageBase>00400000</DCC_ImageBase>
  116. <SanitizedProjectName>JsonSerializer</SanitizedProjectName>
  117. <VerInfo_Locale>3082</VerInfo_Locale>
  118. <VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName=</VerInfo_Keys>
  119. <DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace)</DCC_Namespace>
  120. <Icon_MainIcon>$(BDS)\bin\delphi_PROJECTICON.ico</Icon_MainIcon>
  121. <Icns_MainIcns>$(BDS)\bin\delphi_PROJECTICNS.icns</Icns_MainIcns>
  122. <DCC_ExeOutput>.\bin\$(Platform)\$(Config)</DCC_ExeOutput>
  123. <DCC_DcuOutput>.\bin\$(Platform)\$(Config)\dcu</DCC_DcuOutput>
  124. </PropertyGroup>
  125. <PropertyGroup Condition="'$(Base_Android)'!=''">
  126. <VerInfo_Keys>package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey=</VerInfo_Keys>
  127. <BT_BuildType>Debug</BT_BuildType>
  128. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  129. <Android_LauncherIcon36>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_36x36.png</Android_LauncherIcon36>
  130. <Android_LauncherIcon48>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_48x48.png</Android_LauncherIcon48>
  131. <Android_LauncherIcon72>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_72x72.png</Android_LauncherIcon72>
  132. <Android_LauncherIcon96>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_96x96.png</Android_LauncherIcon96>
  133. <Android_LauncherIcon144>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_144x144.png</Android_LauncherIcon144>
  134. <Android_SplashImage426>$(BDS)\bin\Artwork\Android\FM_SplashImage_426x320.png</Android_SplashImage426>
  135. <Android_SplashImage470>$(BDS)\bin\Artwork\Android\FM_SplashImage_470x320.png</Android_SplashImage470>
  136. <Android_SplashImage640>$(BDS)\bin\Artwork\Android\FM_SplashImage_640x480.png</Android_SplashImage640>
  137. <Android_SplashImage960>$(BDS)\bin\Artwork\Android\FM_SplashImage_960x720.png</Android_SplashImage960>
  138. <AUP_ACCESS_COARSE_LOCATION>true</AUP_ACCESS_COARSE_LOCATION>
  139. <AUP_ACCESS_FINE_LOCATION>true</AUP_ACCESS_FINE_LOCATION>
  140. <AUP_CALL_PHONE>true</AUP_CALL_PHONE>
  141. <AUP_CAMERA>true</AUP_CAMERA>
  142. <AUP_INTERNET>true</AUP_INTERNET>
  143. <AUP_READ_CALENDAR>true</AUP_READ_CALENDAR>
  144. <AUP_READ_EXTERNAL_STORAGE>true</AUP_READ_EXTERNAL_STORAGE>
  145. <AUP_WRITE_CALENDAR>true</AUP_WRITE_CALENDAR>
  146. <AUP_WRITE_EXTERNAL_STORAGE>true</AUP_WRITE_EXTERNAL_STORAGE>
  147. <AUP_READ_PHONE_STATE>true</AUP_READ_PHONE_STATE>
  148. <EnabledSysJars>android-support-v4.dex.jar;cloud-messaging.dex.jar;fmx.dex.jar;google-analytics-v2.dex.jar;google-play-billing.dex.jar;google-play-licensing.dex.jar;google-play-services-ads-7.0.0.dex.jar;google-play-services-analytics-7.0.0.dex.jar;google-play-services-base-7.0.0.dex.jar;google-play-services-identity-7.0.0.dex.jar;google-play-services-maps-7.0.0.dex.jar;google-play-services-panorama-7.0.0.dex.jar;google-play-services-plus-7.0.0.dex.jar;google-play-services-wallet-7.0.0.dex.jar</EnabledSysJars>
  149. </PropertyGroup>
  150. <PropertyGroup Condition="'$(Base_iOSDevice32)'!=''">
  151. <VerInfo_Keys>CFBundleName=$(MSBuildProjectName);CFBundleDevelopmentRegion=en;CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleInfoDictionaryVersion=7.1;CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;LSRequiresIPhoneOS=true;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);UIDeviceFamily=iPhone &amp; iPad;CFBundleResourceSpecification=ResourceRules.plist;NSLocationAlwaysUsageDescription=The reason for accessing the location information of the user;NSLocationWhenInUseUsageDescription=The reason for accessing the location information of the user;FMLocalNotificationPermission=false;UIBackgroundModes=;NSContactsUsageDescription=The reason for accessing the contacts;NSPhotoLibraryUsageDescription=The reason for accessing the photo library;NSCameraUsageDescription=The reason for accessing the camera</VerInfo_Keys>
  152. <VerInfo_UIDeviceFamily>iPhoneAndiPad</VerInfo_UIDeviceFamily>
  153. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  154. <BT_BuildType>Debug</BT_BuildType>
  155. <VerInfo_BundleId>$(MSBuildProjectName)</VerInfo_BundleId>
  156. <iPhone_AppIcon60>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_60x60.png</iPhone_AppIcon60>
  157. <iPhone_AppIcon120>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_120x120.png</iPhone_AppIcon120>
  158. <iPhone_Spotlight40>$(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_40x40.png</iPhone_Spotlight40>
  159. <iPhone_Spotlight80>$(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_80x80.png</iPhone_Spotlight80>
  160. <iPad_SpotLight40>$(BDS)\bin\Artwork\iOS\iPad\FM_SpotlightSearchIcon_40x40.png</iPad_SpotLight40>
  161. <iPad_SpotLight80>$(BDS)\bin\Artwork\iOS\iPad\FM_SpotlightSearchIcon_80x80.png</iPad_SpotLight80>
  162. <iPad_AppIcon76>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_76x76.png</iPad_AppIcon76>
  163. <iPad_AppIcon152>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_152x152.png</iPad_AppIcon152>
  164. <iPad_Launch768x1024>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_768x1024.png</iPad_Launch768x1024>
  165. <iPad_Launch1024x768>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_1024x768.png</iPad_Launch1024x768>
  166. <iPad_Launch1536x2048>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_1536x2048.png</iPad_Launch1536x2048>
  167. <iPad_Launch2048x1536>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_2048x1536.png</iPad_Launch2048x1536>
  168. <iPhone_AppIcon87>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_87x87.png</iPhone_AppIcon87>
  169. <iPhone_AppIcon180>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_180x180.png</iPhone_AppIcon180>
  170. <iPhone_Launch750>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_750x1334.png</iPhone_Launch750>
  171. <iPhone_Launch1242>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1242x2208.png</iPhone_Launch1242>
  172. <iPhone_Launch2208>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_2208x1242.png</iPhone_Launch2208>
  173. <iPhone_Launch1125>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1125x2436.png</iPhone_Launch1125>
  174. <iPhone_Launch2436>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_2436x1125.png</iPhone_Launch2436>
  175. <iPhone_Spotlight120>$(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_120x120.png</iPhone_Spotlight120>
  176. <iPhone_Launch828>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_828x1792.png</iPhone_Launch828>
  177. <iPhone_Launch1136x640>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1136x640.png</iPhone_Launch1136x640>
  178. <iPhone_Launch1242x2688>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1242x2688.png</iPhone_Launch1242x2688>
  179. <iPhone_Launch1334>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1334x750.png</iPhone_Launch1334>
  180. <iPhone_Launch1792>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1792x828.png</iPhone_Launch1792>
  181. <iPhone_Launch2688x1242>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_2688x1242.png</iPhone_Launch2688x1242>
  182. <iPad_AppIcon83_5>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_83.5x83.5.png</iPad_AppIcon83_5>
  183. <iPad_AppIcon167>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_167x167.png</iPad_AppIcon167>
  184. <iPad_Launch1668>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_1668x2224.png</iPad_Launch1668>
  185. <iPad_Launch1668x2388>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_1668x2388.png</iPad_Launch1668x2388>
  186. <iPad_Launch2048x2732>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_2048x2732.png</iPad_Launch2048x2732>
  187. <iPad_Launch2224>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_2224x1668.png</iPad_Launch2224>
  188. <iPad_Launch2388x1668>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_2388x1668.png</iPad_Launch2388x1668>
  189. <iPad_Launch2732x2048>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_2732x2048.png</iPad_Launch2732x2048>
  190. </PropertyGroup>
  191. <PropertyGroup Condition="'$(Base_iOSDevice64)'!=''">
  192. <iPhone_AppIcon87>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_87x87.png</iPhone_AppIcon87>
  193. <iPhone_AppIcon180>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_180x180.png</iPhone_AppIcon180>
  194. <iPhone_Launch750>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_750x1334.png</iPhone_Launch750>
  195. <iPhone_Launch1242>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1242x2208.png</iPhone_Launch1242>
  196. <iPhone_Launch2208>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_2208x1242.png</iPhone_Launch2208>
  197. <iPhone_Launch1125>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1125x2436.png</iPhone_Launch1125>
  198. <iPhone_Launch2436>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_2436x1125.png</iPhone_Launch2436>
  199. <iPhone_Spotlight120>$(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_120x120.png</iPhone_Spotlight120>
  200. <iPhone_Launch828>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_828x1792.png</iPhone_Launch828>
  201. <iPhone_Launch1136x640>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1136x640.png</iPhone_Launch1136x640>
  202. <iPhone_Launch1242x2688>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1242x2688.png</iPhone_Launch1242x2688>
  203. <iPhone_Launch1334>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1334x750.png</iPhone_Launch1334>
  204. <iPhone_Launch1792>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1792x828.png</iPhone_Launch1792>
  205. <iPhone_Launch2688x1242>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_2688x1242.png</iPhone_Launch2688x1242>
  206. <iPad_AppIcon83_5>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_83.5x83.5.png</iPad_AppIcon83_5>
  207. <iPad_AppIcon167>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_167x167.png</iPad_AppIcon167>
  208. <iPad_Launch1668>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_1668x2224.png</iPad_Launch1668>
  209. <iPad_Launch1668x2388>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_1668x2388.png</iPad_Launch1668x2388>
  210. <iPad_Launch2048x2732>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_2048x2732.png</iPad_Launch2048x2732>
  211. <iPad_Launch2224>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_2224x1668.png</iPad_Launch2224>
  212. <iPad_Launch2388x1668>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_2388x1668.png</iPad_Launch2388x1668>
  213. <iPad_Launch2732x2048>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_2732x2048.png</iPad_Launch2732x2048>
  214. </PropertyGroup>
  215. <PropertyGroup Condition="'$(Base_iOSSimulator)'!=''">
  216. <VerInfo_Keys>CFBundleName=$(MSBuildProjectName);CFBundleDevelopmentRegion=en;CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleInfoDictionaryVersion=7.1;CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;LSRequiresIPhoneOS=true;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);UIDeviceFamily=iPhone &amp; iPad;CFBundleResourceSpecification=ResourceRules.plist;NSLocationAlwaysUsageDescription=The reason for accessing the location information of the user;NSLocationWhenInUseUsageDescription=The reason for accessing the location information of the user;FMLocalNotificationPermission=false;UIBackgroundModes=;NSContactsUsageDescription=The reason for accessing the contacts;NSPhotoLibraryUsageDescription=The reason for accessing the photo library;NSCameraUsageDescription=The reason for accessing the camera</VerInfo_Keys>
  217. <VerInfo_UIDeviceFamily>iPhoneAndiPad</VerInfo_UIDeviceFamily>
  218. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  219. <iPhone_AppIcon60>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_60x60.png</iPhone_AppIcon60>
  220. <iPhone_AppIcon120>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_120x120.png</iPhone_AppIcon120>
  221. <iPhone_Spotlight40>$(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_40x40.png</iPhone_Spotlight40>
  222. <iPhone_Spotlight80>$(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_80x80.png</iPhone_Spotlight80>
  223. <iPad_SpotLight40>$(BDS)\bin\Artwork\iOS\iPad\FM_SpotlightSearchIcon_40x40.png</iPad_SpotLight40>
  224. <iPad_SpotLight80>$(BDS)\bin\Artwork\iOS\iPad\FM_SpotlightSearchIcon_80x80.png</iPad_SpotLight80>
  225. <iPad_AppIcon76>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_76x76.png</iPad_AppIcon76>
  226. <iPad_AppIcon152>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_152x152.png</iPad_AppIcon152>
  227. <iPad_Launch768x1024>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_768x1024.png</iPad_Launch768x1024>
  228. <iPad_Launch1024x768>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_1024x768.png</iPad_Launch1024x768>
  229. <iPad_Launch1536x2048>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_1536x2048.png</iPad_Launch1536x2048>
  230. <iPad_Launch2048x1536>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_2048x1536.png</iPad_Launch2048x1536>
  231. <iPhone_AppIcon87>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_87x87.png</iPhone_AppIcon87>
  232. <iPhone_AppIcon180>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_180x180.png</iPhone_AppIcon180>
  233. <iPhone_Launch750>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_750x1334.png</iPhone_Launch750>
  234. <iPhone_Launch1242>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1242x2208.png</iPhone_Launch1242>
  235. <iPhone_Launch2208>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_2208x1242.png</iPhone_Launch2208>
  236. <iPhone_Launch1125>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1125x2436.png</iPhone_Launch1125>
  237. <iPhone_Launch2436>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_2436x1125.png</iPhone_Launch2436>
  238. <iPhone_Spotlight120>$(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_120x120.png</iPhone_Spotlight120>
  239. <iPhone_Launch828>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_828x1792.png</iPhone_Launch828>
  240. <iPhone_Launch1136x640>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1136x640.png</iPhone_Launch1136x640>
  241. <iPhone_Launch1242x2688>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1242x2688.png</iPhone_Launch1242x2688>
  242. <iPhone_Launch1334>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1334x750.png</iPhone_Launch1334>
  243. <iPhone_Launch1792>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_1792x828.png</iPhone_Launch1792>
  244. <iPhone_Launch2688x1242>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_2688x1242.png</iPhone_Launch2688x1242>
  245. <iPad_AppIcon83_5>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_83.5x83.5.png</iPad_AppIcon83_5>
  246. <iPad_AppIcon167>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_167x167.png</iPad_AppIcon167>
  247. <iPad_Launch1668>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_1668x2224.png</iPad_Launch1668>
  248. <iPad_Launch1668x2388>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_1668x2388.png</iPad_Launch1668x2388>
  249. <iPad_Launch2048x2732>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_2048x2732.png</iPad_Launch2048x2732>
  250. <iPad_Launch2224>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_2224x1668.png</iPad_Launch2224>
  251. <iPad_Launch2388x1668>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_2388x1668.png</iPad_Launch2388x1668>
  252. <iPad_Launch2732x2048>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_2732x2048.png</iPad_Launch2732x2048>
  253. </PropertyGroup>
  254. <PropertyGroup Condition="'$(Base_OSX32)'!=''">
  255. <Icns_MainIcns>$(BDS)\bin\delphi_PROJECTICNS.icns</Icns_MainIcns>
  256. <VerInfo_Keys>CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts</VerInfo_Keys>
  257. <BT_BuildType>Debug</BT_BuildType>
  258. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  259. </PropertyGroup>
  260. <PropertyGroup Condition="'$(Base_Win32)'!=''">
  261. <DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
  262. <BT_BuildType>Debug</BT_BuildType>
  263. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  264. <VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName)</VerInfo_Keys>
  265. <VerInfo_Locale>1033</VerInfo_Locale>
  266. <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
  267. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  268. <UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
  269. <UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
  270. </PropertyGroup>
  271. <PropertyGroup Condition="'$(Base_Win64)'!=''">
  272. <UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
  273. <UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
  274. <DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
  275. <BT_BuildType>Debug</BT_BuildType>
  276. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  277. <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>
  278. <VerInfo_Locale>1033</VerInfo_Locale>
  279. <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
  280. </PropertyGroup>
  281. <PropertyGroup Condition="'$(Cfg_1)'!=''">
  282. <DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
  283. <DCC_DebugInformation>0</DCC_DebugInformation>
  284. <DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
  285. <DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
  286. </PropertyGroup>
  287. <PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
  288. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  289. <AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
  290. </PropertyGroup>
  291. <PropertyGroup Condition="'$(Cfg_1_Win64)'!=''">
  292. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  293. <AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
  294. </PropertyGroup>
  295. <PropertyGroup Condition="'$(Cfg_2)'!=''">
  296. <DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
  297. <DCC_Optimize>false</DCC_Optimize>
  298. <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
  299. </PropertyGroup>
  300. <PropertyGroup Condition="'$(Cfg_2_iOSDevice32)'!=''">
  301. <DCC_RemoteDebug>true</DCC_RemoteDebug>
  302. </PropertyGroup>
  303. <PropertyGroup Condition="'$(Cfg_2_iOSDevice64)'!=''">
  304. <BT_BuildType>Debug</BT_BuildType>
  305. </PropertyGroup>
  306. <PropertyGroup Condition="'$(Cfg_2_iOSSimulator)'!=''">
  307. <DCC_RemoteDebug>true</DCC_RemoteDebug>
  308. </PropertyGroup>
  309. <PropertyGroup Condition="'$(Cfg_2_OSX32)'!=''">
  310. <Icns_MainIcns>$(BDS)\bin\delphi_PROJECTICNS.icns</Icns_MainIcns>
  311. <DCC_RemoteDebug>true</DCC_RemoteDebug>
  312. <VerInfo_Keys>CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundleShortVersionString=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities;NSLocationUsageDescription=The reason for accessing the location information of the user;NSContactsUsageDescription=The reason for accessing the contacts</VerInfo_Keys>
  313. </PropertyGroup>
  314. <PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
  315. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  316. <VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName)</VerInfo_Keys>
  317. <AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
  318. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  319. <VerInfo_Locale>1033</VerInfo_Locale>
  320. </PropertyGroup>
  321. <PropertyGroup Condition="'$(Cfg_2_Win64)'!=''">
  322. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  323. <AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
  324. <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>
  325. </PropertyGroup>
  326. <ItemGroup>
  327. <DelphiCompile Include="$(MainSource)">
  328. <MainSource>MainSource</MainSource>
  329. </DelphiCompile>
  330. <DCCReference Include="main.pas">
  331. <Form>Form1</Form>
  332. </DCCReference>
  333. <BuildConfiguration Include="Debug">
  334. <Key>Cfg_2</Key>
  335. <CfgParent>Base</CfgParent>
  336. </BuildConfiguration>
  337. <BuildConfiguration Include="Base">
  338. <Key>Base</Key>
  339. </BuildConfiguration>
  340. <BuildConfiguration Include="Release">
  341. <Key>Cfg_1</Key>
  342. <CfgParent>Base</CfgParent>
  343. </BuildConfiguration>
  344. </ItemGroup>
  345. <ProjectExtensions>
  346. <Borland.Personality>Delphi.Personality.12</Borland.Personality>
  347. <Borland.ProjectType/>
  348. <BorlandProject>
  349. <Delphi.Personality>
  350. <Source>
  351. <Source Name="MainSource">JsonSerializer.dpr</Source>
  352. </Source>
  353. <Excluded_Packages>
  354. <Excluded_Packages Name="$(BDSBIN)\DataExplorerDBXPluginEnt260.bpl">DBExpress Enterprise Data Explorer Integration</Excluded_Packages>
  355. <Excluded_Packages Name="$(BDSBIN)\bcboffice2k260.bpl">Embarcadero C++Builder Office 2000 Servers Package</Excluded_Packages>
  356. <Excluded_Packages Name="$(BDSBIN)\bcbofficexp260.bpl">Embarcadero C++Builder Office XP Servers Package</Excluded_Packages>
  357. <Excluded_Packages Name="$(BDSBIN)\dcloffice2k260.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
  358. <Excluded_Packages Name="$(BDSBIN)\dclofficexp260.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
  359. <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>
  360. <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>
  361. <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>
  362. <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>
  363. <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>
  364. </Excluded_Packages>
  365. </Delphi.Personality>
  366. <Platforms>
  367. <Platform value="Android">False</Platform>
  368. <Platform value="iOSDevice32">False</Platform>
  369. <Platform value="iOSDevice64">False</Platform>
  370. <Platform value="iOSSimulator">False</Platform>
  371. <Platform value="OSX32">True</Platform>
  372. <Platform value="Win32">True</Platform>
  373. <Platform value="Win64">True</Platform>
  374. </Platforms>
  375. <Deployment Version="3">
  376. <DeployFile LocalName="$(BDS)\Redist\osx32\libcgunwind.1.0.dylib" Class="DependencyModule">
  377. <Platform Name="OSX32">
  378. <Overwrite>true</Overwrite>
  379. </Platform>
  380. </DeployFile>
  381. <DeployFile LocalName="$(BDS)\Redist\osx64\libcgsqlite3.dylib" Class="DependencyModule">
  382. <Platform Name="OSX64">
  383. <Overwrite>true</Overwrite>
  384. </Platform>
  385. </DeployFile>
  386. <DeployFile LocalName="bin\OSX32\Debug\JsonSerializer.info.plist" Configuration="Debug" Class="ProjectOSXInfoPList">
  387. <Platform Name="OSX32">
  388. <RemoteName>Info.plist</RemoteName>
  389. <Overwrite>true</Overwrite>
  390. </Platform>
  391. </DeployFile>
  392. <DeployFile LocalName="$(BDS)\Redist\iossimulator\libcgunwind.1.0.dylib" Class="DependencyModule">
  393. <Platform Name="iOSSimulator">
  394. <Overwrite>true</Overwrite>
  395. </Platform>
  396. </DeployFile>
  397. <DeployFile LocalName="$(BDS)\Redist\iossimulator\libpcre.dylib" Class="DependencyModule">
  398. <Platform Name="iOSSimulator">
  399. <Overwrite>true</Overwrite>
  400. </Platform>
  401. </DeployFile>
  402. <DeployFile LocalName="$(BDS)\Redist\osx32\libcgsqlite3.dylib" Class="DependencyModule">
  403. <Platform Name="OSX32">
  404. <Overwrite>true</Overwrite>
  405. </Platform>
  406. </DeployFile>
  407. <DeployFile LocalName="bin\OSX32\Debug\JsonSerializer" Configuration="Debug" Class="ProjectOutput">
  408. <Platform Name="OSX32">
  409. <RemoteName>JsonSerializer</RemoteName>
  410. <Overwrite>true</Overwrite>
  411. </Platform>
  412. </DeployFile>
  413. <DeployFile LocalName="$(BDS)\bin\delphi_PROJECTICNS.icns" Configuration="Debug" Class="ProjectOSXResource">
  414. <Platform Name="OSX32">
  415. <RemoteName>JsonSerializer.icns</RemoteName>
  416. <Overwrite>true</Overwrite>
  417. </Platform>
  418. </DeployFile>
  419. <DeployFile LocalName="bin\OSX32\Debug\JsonSerializer.entitlements" Configuration="Debug" Class="ProjectOSXEntitlements">
  420. <Platform Name="OSX32">
  421. <Overwrite>true</Overwrite>
  422. </Platform>
  423. </DeployFile>
  424. <DeployClass Name="AdditionalDebugSymbols">
  425. <Platform Name="iOSSimulator">
  426. <Operation>1</Operation>
  427. </Platform>
  428. <Platform Name="OSX32">
  429. <RemoteDir>Contents\MacOS</RemoteDir>
  430. <Operation>1</Operation>
  431. </Platform>
  432. <Platform Name="Win32">
  433. <Operation>0</Operation>
  434. </Platform>
  435. </DeployClass>
  436. <DeployClass Name="AndroidClassesDexFile">
  437. <Platform Name="Android">
  438. <RemoteDir>classes</RemoteDir>
  439. <Operation>1</Operation>
  440. </Platform>
  441. </DeployClass>
  442. <DeployClass Name="AndroidFileProvider">
  443. <Platform Name="Android">
  444. <RemoteDir>res\xml</RemoteDir>
  445. <Operation>1</Operation>
  446. </Platform>
  447. </DeployClass>
  448. <DeployClass Name="AndroidGDBServer">
  449. <Platform Name="Android">
  450. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  451. <Operation>1</Operation>
  452. </Platform>
  453. </DeployClass>
  454. <DeployClass Name="AndroidLibnativeArmeabiFile">
  455. <Platform Name="Android">
  456. <RemoteDir>library\lib\armeabi</RemoteDir>
  457. <Operation>1</Operation>
  458. </Platform>
  459. </DeployClass>
  460. <DeployClass Name="AndroidLibnativeMipsFile">
  461. <Platform Name="Android">
  462. <RemoteDir>library\lib\mips</RemoteDir>
  463. <Operation>1</Operation>
  464. </Platform>
  465. </DeployClass>
  466. <DeployClass Name="AndroidServiceOutput">
  467. <Platform Name="Android">
  468. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  469. <Operation>1</Operation>
  470. </Platform>
  471. </DeployClass>
  472. <DeployClass Name="AndroidSplashImageDef">
  473. <Platform Name="Android">
  474. <RemoteDir>res\drawable</RemoteDir>
  475. <Operation>1</Operation>
  476. </Platform>
  477. </DeployClass>
  478. <DeployClass Name="AndroidSplashStyles">
  479. <Platform Name="Android">
  480. <RemoteDir>res\values</RemoteDir>
  481. <Operation>1</Operation>
  482. </Platform>
  483. </DeployClass>
  484. <DeployClass Name="AndroidSplashStylesV21">
  485. <Platform Name="Android">
  486. <RemoteDir>res\values-v21</RemoteDir>
  487. <Operation>1</Operation>
  488. </Platform>
  489. </DeployClass>
  490. <DeployClass Name="Android_DefaultAppIcon">
  491. <Platform Name="Android">
  492. <RemoteDir>res\drawable</RemoteDir>
  493. <Operation>1</Operation>
  494. </Platform>
  495. </DeployClass>
  496. <DeployClass Name="Android_LauncherIcon144">
  497. <Platform Name="Android">
  498. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  499. <Operation>1</Operation>
  500. </Platform>
  501. </DeployClass>
  502. <DeployClass Name="Android_LauncherIcon36">
  503. <Platform Name="Android">
  504. <RemoteDir>res\drawable-ldpi</RemoteDir>
  505. <Operation>1</Operation>
  506. </Platform>
  507. </DeployClass>
  508. <DeployClass Name="Android_LauncherIcon48">
  509. <Platform Name="Android">
  510. <RemoteDir>res\drawable-mdpi</RemoteDir>
  511. <Operation>1</Operation>
  512. </Platform>
  513. </DeployClass>
  514. <DeployClass Name="Android_LauncherIcon72">
  515. <Platform Name="Android">
  516. <RemoteDir>res\drawable-hdpi</RemoteDir>
  517. <Operation>1</Operation>
  518. </Platform>
  519. </DeployClass>
  520. <DeployClass Name="Android_LauncherIcon96">
  521. <Platform Name="Android">
  522. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  523. <Operation>1</Operation>
  524. </Platform>
  525. </DeployClass>
  526. <DeployClass Name="Android_SplashImage426">
  527. <Platform Name="Android">
  528. <RemoteDir>res\drawable-small</RemoteDir>
  529. <Operation>1</Operation>
  530. </Platform>
  531. </DeployClass>
  532. <DeployClass Name="Android_SplashImage470">
  533. <Platform Name="Android">
  534. <RemoteDir>res\drawable-normal</RemoteDir>
  535. <Operation>1</Operation>
  536. </Platform>
  537. </DeployClass>
  538. <DeployClass Name="Android_SplashImage640">
  539. <Platform Name="Android">
  540. <RemoteDir>res\drawable-large</RemoteDir>
  541. <Operation>1</Operation>
  542. </Platform>
  543. </DeployClass>
  544. <DeployClass Name="Android_SplashImage960">
  545. <Platform Name="Android">
  546. <RemoteDir>res\drawable-xlarge</RemoteDir>
  547. <Operation>1</Operation>
  548. </Platform>
  549. </DeployClass>
  550. <DeployClass Name="DebugSymbols">
  551. <Platform Name="iOSSimulator">
  552. <Operation>1</Operation>
  553. </Platform>
  554. <Platform Name="OSX32">
  555. <RemoteDir>Contents\MacOS</RemoteDir>
  556. <Operation>1</Operation>
  557. </Platform>
  558. <Platform Name="Win32">
  559. <Operation>0</Operation>
  560. </Platform>
  561. </DeployClass>
  562. <DeployClass Name="DependencyFramework">
  563. <Platform Name="OSX32">
  564. <RemoteDir>Contents\MacOS</RemoteDir>
  565. <Operation>1</Operation>
  566. <Extensions>.framework</Extensions>
  567. </Platform>
  568. <Platform Name="OSX64">
  569. <RemoteDir>Contents\MacOS</RemoteDir>
  570. <Operation>1</Operation>
  571. <Extensions>.framework</Extensions>
  572. </Platform>
  573. <Platform Name="Win32">
  574. <Operation>0</Operation>
  575. </Platform>
  576. </DeployClass>
  577. <DeployClass Name="DependencyModule">
  578. <Platform Name="iOSDevice32">
  579. <Operation>1</Operation>
  580. <Extensions>.dylib</Extensions>
  581. </Platform>
  582. <Platform Name="iOSDevice64">
  583. <Operation>1</Operation>
  584. <Extensions>.dylib</Extensions>
  585. </Platform>
  586. <Platform Name="iOSSimulator">
  587. <Operation>1</Operation>
  588. <Extensions>.dylib</Extensions>
  589. </Platform>
  590. <Platform Name="OSX32">
  591. <RemoteDir>Contents\MacOS</RemoteDir>
  592. <Operation>1</Operation>
  593. <Extensions>.dylib</Extensions>
  594. </Platform>
  595. <Platform Name="OSX64">
  596. <RemoteDir>Contents\MacOS</RemoteDir>
  597. <Operation>1</Operation>
  598. <Extensions>.dylib</Extensions>
  599. </Platform>
  600. <Platform Name="Win32">
  601. <Operation>0</Operation>
  602. <Extensions>.dll;.bpl</Extensions>
  603. </Platform>
  604. </DeployClass>
  605. <DeployClass Required="true" Name="DependencyPackage">
  606. <Platform Name="iOSDevice32">
  607. <Operation>1</Operation>
  608. <Extensions>.dylib</Extensions>
  609. </Platform>
  610. <Platform Name="iOSDevice64">
  611. <Operation>1</Operation>
  612. <Extensions>.dylib</Extensions>
  613. </Platform>
  614. <Platform Name="iOSSimulator">
  615. <Operation>1</Operation>
  616. <Extensions>.dylib</Extensions>
  617. </Platform>
  618. <Platform Name="OSX32">
  619. <RemoteDir>Contents\MacOS</RemoteDir>
  620. <Operation>1</Operation>
  621. <Extensions>.dylib</Extensions>
  622. </Platform>
  623. <Platform Name="OSX64">
  624. <RemoteDir>Contents\MacOS</RemoteDir>
  625. <Operation>1</Operation>
  626. <Extensions>.dylib</Extensions>
  627. </Platform>
  628. <Platform Name="Win32">
  629. <Operation>0</Operation>
  630. <Extensions>.bpl</Extensions>
  631. </Platform>
  632. </DeployClass>
  633. <DeployClass Name="File">
  634. <Platform Name="Android">
  635. <Operation>0</Operation>
  636. </Platform>
  637. <Platform Name="iOSDevice32">
  638. <Operation>0</Operation>
  639. </Platform>
  640. <Platform Name="iOSDevice64">
  641. <Operation>0</Operation>
  642. </Platform>
  643. <Platform Name="iOSSimulator">
  644. <Operation>0</Operation>
  645. </Platform>
  646. <Platform Name="OSX32">
  647. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  648. <Operation>0</Operation>
  649. </Platform>
  650. <Platform Name="OSX64">
  651. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  652. <Operation>0</Operation>
  653. </Platform>
  654. <Platform Name="Win32">
  655. <Operation>0</Operation>
  656. </Platform>
  657. </DeployClass>
  658. <DeployClass Name="iPad_Launch1024">
  659. <Platform Name="iOSDevice32">
  660. <Operation>1</Operation>
  661. </Platform>
  662. <Platform Name="iOSDevice64">
  663. <Operation>1</Operation>
  664. </Platform>
  665. <Platform Name="iOSSimulator">
  666. <Operation>1</Operation>
  667. </Platform>
  668. </DeployClass>
  669. <DeployClass Name="iPad_Launch1536">
  670. <Platform Name="iOSDevice32">
  671. <Operation>1</Operation>
  672. </Platform>
  673. <Platform Name="iOSDevice64">
  674. <Operation>1</Operation>
  675. </Platform>
  676. <Platform Name="iOSSimulator">
  677. <Operation>1</Operation>
  678. </Platform>
  679. </DeployClass>
  680. <DeployClass Name="iPad_Launch2048">
  681. <Platform Name="iOSDevice32">
  682. <Operation>1</Operation>
  683. </Platform>
  684. <Platform Name="iOSDevice64">
  685. <Operation>1</Operation>
  686. </Platform>
  687. <Platform Name="iOSSimulator">
  688. <Operation>1</Operation>
  689. </Platform>
  690. </DeployClass>
  691. <DeployClass Name="iPad_Launch768">
  692. <Platform Name="iOSDevice32">
  693. <Operation>1</Operation>
  694. </Platform>
  695. <Platform Name="iOSDevice64">
  696. <Operation>1</Operation>
  697. </Platform>
  698. <Platform Name="iOSSimulator">
  699. <Operation>1</Operation>
  700. </Platform>
  701. </DeployClass>
  702. <DeployClass Name="iPhone_Launch320">
  703. <Platform Name="iOSDevice32">
  704. <Operation>1</Operation>
  705. </Platform>
  706. <Platform Name="iOSDevice64">
  707. <Operation>1</Operation>
  708. </Platform>
  709. <Platform Name="iOSSimulator">
  710. <Operation>1</Operation>
  711. </Platform>
  712. </DeployClass>
  713. <DeployClass Name="iPhone_Launch640">
  714. <Platform Name="iOSDevice32">
  715. <Operation>1</Operation>
  716. </Platform>
  717. <Platform Name="iOSDevice64">
  718. <Operation>1</Operation>
  719. </Platform>
  720. <Platform Name="iOSSimulator">
  721. <Operation>1</Operation>
  722. </Platform>
  723. </DeployClass>
  724. <DeployClass Name="iPhone_Launch640x1136">
  725. <Platform Name="iOSDevice32">
  726. <Operation>1</Operation>
  727. </Platform>
  728. <Platform Name="iOSDevice64">
  729. <Operation>1</Operation>
  730. </Platform>
  731. <Platform Name="iOSSimulator">
  732. <Operation>1</Operation>
  733. </Platform>
  734. </DeployClass>
  735. <DeployClass Name="ProjectAndroidManifest">
  736. <Platform Name="Android">
  737. <Operation>1</Operation>
  738. </Platform>
  739. </DeployClass>
  740. <DeployClass Name="ProjectiOSDeviceDebug">
  741. <Platform Name="iOSDevice32">
  742. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  743. <Operation>1</Operation>
  744. </Platform>
  745. <Platform Name="iOSDevice64">
  746. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  747. <Operation>1</Operation>
  748. </Platform>
  749. </DeployClass>
  750. <DeployClass Name="ProjectiOSDeviceResourceRules">
  751. <Platform Name="iOSDevice32">
  752. <Operation>1</Operation>
  753. </Platform>
  754. <Platform Name="iOSDevice64">
  755. <Operation>1</Operation>
  756. </Platform>
  757. </DeployClass>
  758. <DeployClass Name="ProjectiOSEntitlements">
  759. <Platform Name="iOSDevice32">
  760. <RemoteDir>..\</RemoteDir>
  761. <Operation>1</Operation>
  762. </Platform>
  763. <Platform Name="iOSDevice64">
  764. <RemoteDir>..\</RemoteDir>
  765. <Operation>1</Operation>
  766. </Platform>
  767. </DeployClass>
  768. <DeployClass Name="ProjectiOSInfoPList">
  769. <Platform Name="iOSDevice32">
  770. <Operation>1</Operation>
  771. </Platform>
  772. <Platform Name="iOSDevice64">
  773. <Operation>1</Operation>
  774. </Platform>
  775. <Platform Name="iOSSimulator">
  776. <Operation>1</Operation>
  777. </Platform>
  778. </DeployClass>
  779. <DeployClass Name="ProjectiOSResource">
  780. <Platform Name="iOSDevice32">
  781. <Operation>1</Operation>
  782. </Platform>
  783. <Platform Name="iOSDevice64">
  784. <Operation>1</Operation>
  785. </Platform>
  786. <Platform Name="iOSSimulator">
  787. <Operation>1</Operation>
  788. </Platform>
  789. </DeployClass>
  790. <DeployClass Name="ProjectOSXDebug">
  791. <Platform Name="OSX64">
  792. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  793. <Operation>1</Operation>
  794. </Platform>
  795. </DeployClass>
  796. <DeployClass Name="ProjectOSXEntitlements">
  797. <Platform Name="OSX32">
  798. <RemoteDir>..\</RemoteDir>
  799. <Operation>1</Operation>
  800. </Platform>
  801. <Platform Name="OSX64">
  802. <RemoteDir>..\</RemoteDir>
  803. <Operation>1</Operation>
  804. </Platform>
  805. </DeployClass>
  806. <DeployClass Name="ProjectOSXInfoPList">
  807. <Platform Name="OSX32">
  808. <RemoteDir>Contents</RemoteDir>
  809. <Operation>1</Operation>
  810. </Platform>
  811. <Platform Name="OSX64">
  812. <RemoteDir>Contents</RemoteDir>
  813. <Operation>1</Operation>
  814. </Platform>
  815. </DeployClass>
  816. <DeployClass Name="ProjectOSXResource">
  817. <Platform Name="OSX32">
  818. <RemoteDir>Contents\Resources</RemoteDir>
  819. <Operation>1</Operation>
  820. </Platform>
  821. <Platform Name="OSX64">
  822. <RemoteDir>Contents\Resources</RemoteDir>
  823. <Operation>1</Operation>
  824. </Platform>
  825. </DeployClass>
  826. <DeployClass Required="true" Name="ProjectOutput">
  827. <Platform Name="Android">
  828. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  829. <Operation>1</Operation>
  830. </Platform>
  831. <Platform Name="iOSDevice32">
  832. <Operation>1</Operation>
  833. </Platform>
  834. <Platform Name="iOSDevice64">
  835. <Operation>1</Operation>
  836. </Platform>
  837. <Platform Name="iOSSimulator">
  838. <Operation>1</Operation>
  839. </Platform>
  840. <Platform Name="Linux64">
  841. <Operation>1</Operation>
  842. </Platform>
  843. <Platform Name="OSX32">
  844. <RemoteDir>Contents\MacOS</RemoteDir>
  845. <Operation>1</Operation>
  846. </Platform>
  847. <Platform Name="OSX64">
  848. <RemoteDir>Contents\MacOS</RemoteDir>
  849. <Operation>1</Operation>
  850. </Platform>
  851. <Platform Name="Win32">
  852. <Operation>0</Operation>
  853. </Platform>
  854. </DeployClass>
  855. <DeployClass Name="ProjectUWPManifest">
  856. <Platform Name="Win32">
  857. <Operation>1</Operation>
  858. </Platform>
  859. <Platform Name="Win64">
  860. <Operation>1</Operation>
  861. </Platform>
  862. </DeployClass>
  863. <DeployClass Name="UWP_DelphiLogo150">
  864. <Platform Name="Win32">
  865. <RemoteDir>Assets</RemoteDir>
  866. <Operation>1</Operation>
  867. </Platform>
  868. <Platform Name="Win64">
  869. <RemoteDir>Assets</RemoteDir>
  870. <Operation>1</Operation>
  871. </Platform>
  872. </DeployClass>
  873. <DeployClass Name="UWP_DelphiLogo44">
  874. <Platform Name="Win32">
  875. <RemoteDir>Assets</RemoteDir>
  876. <Operation>1</Operation>
  877. </Platform>
  878. <Platform Name="Win64">
  879. <RemoteDir>Assets</RemoteDir>
  880. <Operation>1</Operation>
  881. </Platform>
  882. </DeployClass>
  883. <ProjectRoot Platform="iOSDevice64" Name="$(PROJECTNAME).app"/>
  884. <ProjectRoot Platform="Win64" Name="$(PROJECTNAME)"/>
  885. <ProjectRoot Platform="iOSDevice32" Name="$(PROJECTNAME).app"/>
  886. <ProjectRoot Platform="Linux64" Name="$(PROJECTNAME)"/>
  887. <ProjectRoot Platform="Win32" Name="$(PROJECTNAME)"/>
  888. <ProjectRoot Platform="OSX32" Name="$(PROJECTNAME).app"/>
  889. <ProjectRoot Platform="Android" Name="$(PROJECTNAME)"/>
  890. <ProjectRoot Platform="OSX64" Name="$(PROJECTNAME).app"/>
  891. <ProjectRoot Platform="iOSSimulator" Name="$(PROJECTNAME).app"/>
  892. </Deployment>
  893. </BorlandProject>
  894. <ProjectFileVersion>12</ProjectFileVersion>
  895. </ProjectExtensions>
  896. <Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
  897. <Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
  898. <Import Project="$(MSBuildProjectName).deployproj" Condition="Exists('$(MSBuildProjectName).deployproj')"/>
  899. </Project>