SendEmail.dproj 70 KB

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