ScalarProductD.dproj 59 KB

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