Skip to content

Commit d30902d

Browse files
Lev ZeninLev Zenin
Lev Zenin
authored and
Lev Zenin
committed
some changes
1 parent 14d9e47 commit d30902d

22 files changed

+293
-277
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,106 +1,169 @@
1-
 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2-
<PropertyGroup>
3-
<ProjectGuid>{94D8351C-D7FA-4AB4-B4FA-8A463EB52A65}</ProjectGuid>
4-
<MainSource>MultithreadSample.dpr</MainSource>
5-
<Config Condition="'$(Config)'==''">Debug</Config>
6-
<DCC_DCCCompiler>DCC32</DCC_DCCCompiler>
7-
<ProjectVersion>12.0</ProjectVersion>
8-
</PropertyGroup>
9-
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
10-
<Base>true</Base>
11-
</PropertyGroup>
12-
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''">
13-
<Cfg_1>true</Cfg_1>
14-
<CfgParent>Base</CfgParent>
15-
<Base>true</Base>
16-
</PropertyGroup>
17-
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''">
18-
<Cfg_2>true</Cfg_2>
19-
<CfgParent>Base</CfgParent>
20-
<Base>true</Base>
21-
</PropertyGroup>
22-
<PropertyGroup Condition="'$(Base)'!=''">
23-
<DCC_ImageBase>00400000</DCC_ImageBase>
24-
<DCC_E>false</DCC_E>
25-
<DCC_Platform>x86</DCC_Platform>
26-
<DCC_DependencyCheckOutputName>MultithreadSample.exe</DCC_DependencyCheckOutputName>
27-
<DCC_N>false</DCC_N>
28-
<DCC_S>false</DCC_S>
29-
<DCC_F>false</DCC_F>
30-
<DCC_K>false</DCC_K>
31-
</PropertyGroup>
32-
<PropertyGroup Condition="'$(Cfg_1)'!=''">
33-
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
34-
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
35-
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
36-
<DCC_DebugInformation>false</DCC_DebugInformation>
37-
</PropertyGroup>
38-
<PropertyGroup Condition="'$(Cfg_2)'!=''">
39-
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
40-
</PropertyGroup>
41-
<ItemGroup>
42-
<DelphiCompile Include="MultithreadSample.dpr">
43-
<MainSource>MainSource</MainSource>
44-
</DelphiCompile>
45-
<DCCReference Include="frm_main.pas">
46-
<Form>frmMain</Form>
47-
</DCCReference>
48-
<DCCReference Include="php_thread.pas"/>
49-
<BuildConfiguration Include="Base">
50-
<Key>Base</Key>
51-
</BuildConfiguration>
52-
<BuildConfiguration Include="Debug">
53-
<Key>Cfg_2</Key>
54-
<CfgParent>Base</CfgParent>
55-
</BuildConfiguration>
56-
<BuildConfiguration Include="Release">
57-
<Key>Cfg_1</Key>
58-
<CfgParent>Base</CfgParent>
59-
</BuildConfiguration>
60-
</ItemGroup>
61-
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
62-
<ProjectExtensions>
63-
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
64-
<Borland.ProjectType>VCLApplication</Borland.ProjectType>
65-
<BorlandProject>
66-
<Delphi.Personality>
67-
<Source>
68-
<Source Name="MainSource">MultithreadSample.dpr</Source>
69-
</Source>
70-
<Parameters>
71-
<Parameters Name="UseLauncher">False</Parameters>
72-
<Parameters Name="LoadAllSymbols">True</Parameters>
73-
<Parameters Name="LoadUnspecifiedSymbols">False</Parameters>
74-
</Parameters>
75-
<VersionInfo>
76-
<VersionInfo Name="IncludeVerInfo">False</VersionInfo>
77-
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
78-
<VersionInfo Name="MajorVer">1</VersionInfo>
79-
<VersionInfo Name="MinorVer">0</VersionInfo>
80-
<VersionInfo Name="Release">0</VersionInfo>
81-
<VersionInfo Name="Build">0</VersionInfo>
82-
<VersionInfo Name="Debug">False</VersionInfo>
83-
<VersionInfo Name="PreRelease">False</VersionInfo>
84-
<VersionInfo Name="Special">False</VersionInfo>
85-
<VersionInfo Name="Private">False</VersionInfo>
86-
<VersionInfo Name="DLL">False</VersionInfo>
87-
<VersionInfo Name="Locale">2057</VersionInfo>
88-
<VersionInfo Name="CodePage">1252</VersionInfo>
89-
</VersionInfo>
90-
<VersionInfoKeys>
91-
<VersionInfoKeys Name="CompanyName"/>
92-
<VersionInfoKeys Name="FileDescription"/>
93-
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
94-
<VersionInfoKeys Name="InternalName"/>
95-
<VersionInfoKeys Name="LegalCopyright"/>
96-
<VersionInfoKeys Name="LegalTrademarks"/>
97-
<VersionInfoKeys Name="OriginalFilename"/>
98-
<VersionInfoKeys Name="ProductName"/>
99-
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
100-
<VersionInfoKeys Name="Comments"/>
101-
</VersionInfoKeys>
102-
</Delphi.Personality>
103-
</BorlandProject>
104-
<ProjectFileVersion>12</ProjectFileVersion>
105-
</ProjectExtensions>
106-
</Project>
1+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<PropertyGroup>
3+
<ProjectGuid>{94D8351C-D7FA-4AB4-B4FA-8A463EB52A65}</ProjectGuid>
4+
<MainSource>MultithreadSample.dpr</MainSource>
5+
<Config Condition="'$(Config)'==''">Debug</Config>
6+
<DCC_DCCCompiler>DCC32</DCC_DCCCompiler>
7+
<ProjectVersion>18.2</ProjectVersion>
8+
<FrameworkType>VCL</FrameworkType>
9+
<Base>True</Base>
10+
<Platform Condition="'$(Platform)'==''">Win32</Platform>
11+
<TargetedPlatforms>1</TargetedPlatforms>
12+
<AppType>Application</AppType>
13+
</PropertyGroup>
14+
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
15+
<Base>true</Base>
16+
</PropertyGroup>
17+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
18+
<Base_Win32>true</Base_Win32>
19+
<CfgParent>Base</CfgParent>
20+
<Base>true</Base>
21+
</PropertyGroup>
22+
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
23+
<Base_Win64>true</Base_Win64>
24+
<CfgParent>Base</CfgParent>
25+
<Base>true</Base>
26+
</PropertyGroup>
27+
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''">
28+
<Cfg_1>true</Cfg_1>
29+
<CfgParent>Base</CfgParent>
30+
<Base>true</Base>
31+
</PropertyGroup>
32+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''">
33+
<Cfg_1_Win32>true</Cfg_1_Win32>
34+
<CfgParent>Cfg_1</CfgParent>
35+
<Cfg_1>true</Cfg_1>
36+
<Base>true</Base>
37+
</PropertyGroup>
38+
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''">
39+
<Cfg_2>true</Cfg_2>
40+
<CfgParent>Base</CfgParent>
41+
<Base>true</Base>
42+
</PropertyGroup>
43+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''">
44+
<Cfg_2_Win32>true</Cfg_2_Win32>
45+
<CfgParent>Cfg_2</CfgParent>
46+
<Cfg_2>true</Cfg_2>
47+
<Base>true</Base>
48+
</PropertyGroup>
49+
<PropertyGroup Condition="'$(Base)'!=''">
50+
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
51+
<DCC_Namespace>Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;System;Xml;Data;Datasnap;Web;Soap;Winapi;$(DCC_Namespace)</DCC_Namespace>
52+
<SanitizedProjectName>MultithreadSample</SanitizedProjectName>
53+
<VerInfo_Locale>2057</VerInfo_Locale>
54+
<DCC_ImageBase>00400000</DCC_ImageBase>
55+
<DCC_E>false</DCC_E>
56+
<DCC_Platform>x86</DCC_Platform>
57+
<DCC_DependencyCheckOutputName>MultithreadSample.exe</DCC_DependencyCheckOutputName>
58+
<DCC_N>false</DCC_N>
59+
<DCC_S>false</DCC_S>
60+
<DCC_F>false</DCC_F>
61+
<DCC_K>false</DCC_K>
62+
</PropertyGroup>
63+
<PropertyGroup Condition="'$(Base_Win32)'!=''">
64+
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
65+
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
66+
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
67+
<Icon_MainIcon>MultithreadSample_Icon4.ico</Icon_MainIcon>
68+
<UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
69+
<VerInfo_Locale>1033</VerInfo_Locale>
70+
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
71+
<UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
72+
<VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(ModuleName)</VerInfo_Keys>
73+
<BT_BuildType>Debug</BT_BuildType>
74+
</PropertyGroup>
75+
<PropertyGroup Condition="'$(Base_Win64)'!=''">
76+
<UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
77+
<Icon_MainIcon>MultithreadSample_Icon4.ico</Icon_MainIcon>
78+
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
79+
<UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
80+
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
81+
</PropertyGroup>
82+
<PropertyGroup Condition="'$(Cfg_1)'!=''">
83+
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
84+
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
85+
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
86+
<DCC_DebugInformation>0</DCC_DebugInformation>
87+
</PropertyGroup>
88+
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
89+
<AppEnableHighDPI>true</AppEnableHighDPI>
90+
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
91+
</PropertyGroup>
92+
<PropertyGroup Condition="'$(Cfg_2)'!=''">
93+
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
94+
</PropertyGroup>
95+
<PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
96+
<AppEnableHighDPI>true</AppEnableHighDPI>
97+
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
98+
</PropertyGroup>
99+
<ItemGroup>
100+
<DelphiCompile Include="$(MainSource)">
101+
<MainSource>MainSource</MainSource>
102+
</DelphiCompile>
103+
<DCCReference Include="frm_main.pas">
104+
<Form>frmMain</Form>
105+
</DCCReference>
106+
<DCCReference Include="php_thread.pas"/>
107+
<BuildConfiguration Include="Debug">
108+
<Key>Cfg_2</Key>
109+
<CfgParent>Base</CfgParent>
110+
</BuildConfiguration>
111+
<BuildConfiguration Include="Base">
112+
<Key>Base</Key>
113+
</BuildConfiguration>
114+
<BuildConfiguration Include="Release">
115+
<Key>Cfg_1</Key>
116+
<CfgParent>Base</CfgParent>
117+
</BuildConfiguration>
118+
</ItemGroup>
119+
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
120+
<ProjectExtensions>
121+
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
122+
<Borland.ProjectType>VCLApplication</Borland.ProjectType>
123+
<BorlandProject>
124+
<Delphi.Personality>
125+
<Source>
126+
<Source Name="MainSource">MultithreadSample.dpr</Source>
127+
</Source>
128+
<Parameters>
129+
<Parameters Name="UseLauncher">False</Parameters>
130+
<Parameters Name="LoadAllSymbols">True</Parameters>
131+
<Parameters Name="LoadUnspecifiedSymbols">False</Parameters>
132+
</Parameters>
133+
<VersionInfo>
134+
<VersionInfo Name="IncludeVerInfo">False</VersionInfo>
135+
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
136+
<VersionInfo Name="MajorVer">1</VersionInfo>
137+
<VersionInfo Name="MinorVer">0</VersionInfo>
138+
<VersionInfo Name="Release">0</VersionInfo>
139+
<VersionInfo Name="Build">0</VersionInfo>
140+
<VersionInfo Name="Debug">False</VersionInfo>
141+
<VersionInfo Name="PreRelease">False</VersionInfo>
142+
<VersionInfo Name="Special">False</VersionInfo>
143+
<VersionInfo Name="Private">False</VersionInfo>
144+
<VersionInfo Name="DLL">False</VersionInfo>
145+
<VersionInfo Name="Locale">2057</VersionInfo>
146+
<VersionInfo Name="CodePage">1252</VersionInfo>
147+
</VersionInfo>
148+
<VersionInfoKeys>
149+
<VersionInfoKeys Name="CompanyName"/>
150+
<VersionInfoKeys Name="FileDescription"/>
151+
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
152+
<VersionInfoKeys Name="InternalName"/>
153+
<VersionInfoKeys Name="LegalCopyright"/>
154+
<VersionInfoKeys Name="LegalTrademarks"/>
155+
<VersionInfoKeys Name="OriginalFilename"/>
156+
<VersionInfoKeys Name="ProductName"/>
157+
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
158+
<VersionInfoKeys Name="Comments"/>
159+
</VersionInfoKeys>
160+
</Delphi.Personality>
161+
<Platforms>
162+
<Platform value="Win32">True</Platform>
163+
<Platform value="Win64">False</Platform>
164+
</Platforms>
165+
</BorlandProject>
166+
<ProjectFileVersion>12</ProjectFileVersion>
167+
</ProjectExtensions>
168+
<Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
169+
</Project>

Source/Demos/psvPHP/console/phpcon.dpr

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ uses
1919
php4delphi,
2020
zendAPI,
2121
ZENDTypes;
22+
2223
var
2324
php : TpsvPHP;
2425
Engine : TPHPEngine;

Source/Demos/psvPHP/console/phpcon.dproj

+33-18
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<AppType>Console</AppType>
99
<FrameworkType>None</FrameworkType>
1010
<ProjectVersion>18.2</ProjectVersion>
11-
<Platform Condition="'$(Platform)'==''">Win32</Platform>
11+
<Platform Condition="'$(Platform)'==''">Win64</Platform>
1212
</PropertyGroup>
1313
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
1414
<Base>true</Base>
@@ -39,11 +39,23 @@
3939
<Cfg_1>true</Cfg_1>
4040
<Base>true</Base>
4141
</PropertyGroup>
42+
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win64)'!=''">
43+
<Cfg_1_Win64>true</Cfg_1_Win64>
44+
<CfgParent>Cfg_1</CfgParent>
45+
<Cfg_1>true</Cfg_1>
46+
<Base>true</Base>
47+
</PropertyGroup>
4248
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''">
4349
<Cfg_2>true</Cfg_2>
4450
<CfgParent>Base</CfgParent>
4551
<Base>true</Base>
4652
</PropertyGroup>
53+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''">
54+
<Cfg_2_Win32>true</Cfg_2_Win32>
55+
<CfgParent>Cfg_2</CfgParent>
56+
<Cfg_2>true</Cfg_2>
57+
<Base>true</Base>
58+
</PropertyGroup>
4759
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win64)'!=''">
4860
<Cfg_2_Win64>true</Cfg_2_Win64>
4961
<CfgParent>Cfg_2</CfgParent>
@@ -116,12 +128,20 @@
116128
<VerInfo_Locale>1033</VerInfo_Locale>
117129
<VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName)</VerInfo_Keys>
118130
</PropertyGroup>
131+
<PropertyGroup Condition="'$(Cfg_1_Win64)'!=''">
132+
<VerInfo_Locale>1033</VerInfo_Locale>
133+
<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>
134+
</PropertyGroup>
119135
<PropertyGroup Condition="'$(Cfg_2)'!=''">
120136
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
121137
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
122138
<DCC_Optimize>false</DCC_Optimize>
123139
</PropertyGroup>
140+
<PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
141+
<Debugger_RunParams>info.php</Debugger_RunParams>
142+
</PropertyGroup>
124143
<PropertyGroup Condition="'$(Cfg_2_Win64)'!=''">
144+
<Debugger_RunParams>info.php</Debugger_RunParams>
125145
<VerInfo_Locale>1033</VerInfo_Locale>
126146
<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>
127147
</PropertyGroup>
@@ -150,14 +170,9 @@
150170
<Source Name="MainSource">phpcon.dpr</Source>
151171
</Source>
152172
<Excluded_Packages>
153-
<Excluded_Packages Name="C:\Program Files (x86)\FastReports\LibD24\dclfrx24.bpl">File C:\Program Files (x86)\FastReports\LibD24\dclfrx24.bpl not found</Excluded_Packages>
154-
<Excluded_Packages Name="C:\Program Files (x86)\FastReports\LibD24\dclfrxDB24.bpl">File C:\Program Files (x86)\FastReports\LibD24\dclfrxDB24.bpl not found</Excluded_Packages>
155-
<Excluded_Packages Name="C:\Program Files (x86)\FastReports\LibD24\dclfrxe24.bpl">File C:\Program Files (x86)\FastReports\LibD24\dclfrxe24.bpl not found</Excluded_Packages>
156-
<Excluded_Packages Name="C:\Program Files (x86)\FastReports\LibD24\dclfrxtee24.bpl">File C:\Program Files (x86)\FastReports\LibD24\dclfrxtee24.bpl not found</Excluded_Packages>
157173
<Excluded_Packages Name="$(BDSBIN)\bcboffice2k240.bpl">Embarcadero C++Builder Office 2000 Servers Package</Excluded_Packages>
158174
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k240.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
159175
<Excluded_Packages Name="$(BDSBIN)\dclofficexp240.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
160-
<Excluded_Packages Name="C:\Users\Lev\Documents\Embarcadero\Studio\18.0\Projects\Bpl\BCEditor.Delphi.Designtime.bpl">BCEditor Components</Excluded_Packages>
161176
</Excluded_Packages>
162177
</Delphi.Personality>
163178
<Platforms>
@@ -186,22 +201,13 @@
186201
<Overwrite>true</Overwrite>
187202
</Platform>
188203
</DeployFile>
189-
<DeployFile LocalName="C:\elsewere\phpcon.exe" Configuration="Debug" Class="ProjectOutput">
204+
<DeployFile LocalName="C:\elsewere\x32\phpcon.exe" Configuration="Debug" Class="ProjectOutput">
190205
<Platform Name="Win32">
191206
<RemoteName>phpcon.exe</RemoteName>
192207
<Overwrite>true</Overwrite>
193208
</Platform>
194209
</DeployFile>
195-
<DeployClass Name="DependencyModule">
196-
<Platform Name="Win32">
197-
<Operation>0</Operation>
198-
<Extensions>.dll;.bpl</Extensions>
199-
</Platform>
200-
<Platform Name="OSX32">
201-
<Operation>1</Operation>
202-
<Extensions>.dylib</Extensions>
203-
</Platform>
204-
</DeployClass>
210+
<DeployClass Name="ProjectiOSDeviceResourceRules"/>
205211
<DeployClass Name="ProjectOSXResource">
206212
<Platform Name="OSX32">
207213
<RemoteDir>Contents\Resources</RemoteDir>
@@ -540,7 +546,16 @@
540546
<Operation>1</Operation>
541547
</Platform>
542548
</DeployClass>
543-
<DeployClass Name="ProjectiOSDeviceResourceRules"/>
549+
<DeployClass Name="DependencyModule">
550+
<Platform Name="Win32">
551+
<Operation>0</Operation>
552+
<Extensions>.dll;.bpl</Extensions>
553+
</Platform>
554+
<Platform Name="OSX32">
555+
<Operation>1</Operation>
556+
<Extensions>.dylib</Extensions>
557+
</Platform>
558+
</DeployClass>
544559
<ProjectRoot Platform="iOSDevice64" Name="$(PROJECTNAME).app"/>
545560
<ProjectRoot Platform="Win64" Name="$(PROJECTNAME)"/>
546561
<ProjectRoot Platform="iOSDevice32" Name="$(PROJECTNAME).app"/>

0 commit comments

Comments
 (0)