Skip to content

Commit b0f3bfe

Browse files
committed
support for Delphi 10.4
1 parent c50000c commit b0f3bfe

29 files changed

+3097
-31
lines changed

Build.Settings.Compilers.ini

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,3 +266,57 @@ DisplayName=Delphi 10.3 (Android ARM 64)
266266
Platform=Android64
267267
Keys.BDS=Software\Embarcadero\BDS\20.0
268268
Keys.Library=Library\Android64
269+
270+
[Delphi10Sydney.Win32]
271+
DisplayName=Delphi 10.4 (Win32)
272+
Platform=Win32
273+
Keys.BDS=Software\Embarcadero\BDS\21.0
274+
Keys.Library=Library\Win32
275+
276+
[Delphi10Sydney.Win64]
277+
DisplayName=Delphi 10.4 (Win64)
278+
Platform=Win64
279+
Keys.BDS=Software\Embarcadero\BDS\21.0
280+
Keys.Library=Library\Win64
281+
282+
[Delphi10Sydney.OSX32]
283+
DisplayName=Delphi 10.4 (OSX32)
284+
Platform=OSX32
285+
Keys.BDS=Software\Embarcadero\BDS\21.0
286+
Keys.Library=Library\OSX32
287+
288+
[Delphi10Sydney.OSX64]
289+
DisplayName=Delphi 10.4 (OSX64)
290+
Platform=OSX64
291+
Keys.BDS=Software\Embarcadero\BDS\21.0
292+
Keys.Library=Library\OSX64
293+
294+
[Delphi10Sydney.Linux64]
295+
DisplayName=Delphi 10.4 (Linux64)
296+
Platform=Linux64
297+
Keys.BDS=Software\Embarcadero\BDS\21.0
298+
Keys.Library=Library\Linux64
299+
300+
[Delphi10Sydney.iOSSimulator]
301+
DisplayName=Delphi 10.4 (iOS Simulator)
302+
Platform=iOSSimulator
303+
Keys.BDS=Software\Embarcadero\BDS\21.0
304+
Keys.Library=Library\iOSSimulator
305+
306+
[Delphi10Sydney.iOSDevice64]
307+
DisplayName=Delphi 10.4 (iOS Device ARM64)
308+
Platform=iOSDevice64
309+
Keys.BDS=Software\Embarcadero\BDS\21.0
310+
Keys.Library=Library\iOSDevice64
311+
312+
[Delphi10Sydney.AndroidARM]
313+
DisplayName=Delphi 10.4 (Android ARM)
314+
Platform=Android
315+
Keys.BDS=Software\Embarcadero\BDS\21.0
316+
Keys.Library=Library\Android32
317+
318+
[Delphi10Sydney.AndroidARM64]
319+
DisplayName=Delphi 10.4 (Android ARM 64)
320+
Platform=Android64
321+
Keys.BDS=Software\Embarcadero\BDS\21.0
322+
Keys.Library=Library\Android64

Build.Settings.ini

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,3 +287,39 @@ UnitOutputPaths=Library\Delphi10Rio\$(Platform)\$(Config)
287287
[Delphi10Rio.AndroidARM64]
288288
Projects=Packages\Delphi10Rio\Spring4D.groupproj
289289
UnitOutputPaths=Library\Delphi10Rio\$(Platform)\$(Config)
290+
291+
[Delphi10Sydney.Win32]
292+
Projects=Packages\Delphi10Sydney\Spring4D.groupproj
293+
UnitOutputPaths=Library\Delphi10Sydney\$(Platform)\$(Config)
294+
295+
[Delphi10Sydney.Win64]
296+
Projects=Packages\Delphi10Sydney\Spring4D.groupproj
297+
UnitOutputPaths=Library\Delphi10Sydney\$(Platform)\$(Config)
298+
299+
[Delphi10Sydney.OSX32]
300+
Projects=Packages\Delphi10Sydney\Spring4D.groupproj
301+
UnitOutputPaths=Library\Delphi10Sydney\$(Platform)\$(Config)
302+
303+
[Delphi10Sydney.OSX64]
304+
Projects=Packages\Delphi10Sydney\Spring4D.groupproj
305+
UnitOutputPaths=Library\Delphi10Sydney\$(Platform)\$(Config)
306+
307+
[Delphi10Sydney.Linux64]
308+
Projects=Packages\Delphi10Sydney\Spring4D.groupproj
309+
UnitOutputPaths=Library\Delphi10Sydney\$(Platform)\$(Config)
310+
311+
[Delphi10Sydney.iOSSimulator]
312+
Projects=Packages\Delphi10Sydney\Spring4D.groupproj
313+
UnitOutputPaths=Library\Delphi10Sydney\$(Platform)\$(Config)
314+
315+
[Delphi10Sydney.iOSDevice64]
316+
Projects=Packages\Delphi10Sydney\Spring4D.groupproj
317+
UnitOutputPaths=Library\Delphi10Sydney\$(Platform)\$(Config)
318+
319+
[Delphi10Sydney.AndroidARM]
320+
Projects=Packages\Delphi10Sydney\Spring4D.groupproj
321+
UnitOutputPaths=Library\Delphi10Sydney\$(Platform)\$(Config)
322+
323+
[Delphi10Sydney.AndroidARM64]
324+
Projects=Packages\Delphi10Sydney\Spring4D.groupproj
325+
UnitOutputPaths=Library\Delphi10Sydney\$(Platform)\$(Config)
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
package Spring.Base;
2+
3+
{$R *.res}
4+
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
5+
{$ALIGN 8}
6+
{$ASSERTIONS ON}
7+
{$BOOLEVAL OFF}
8+
{$DEBUGINFO OFF}
9+
{$EXTENDEDSYNTAX ON}
10+
{$IMPORTEDDATA ON}
11+
{$IOCHECKS ON}
12+
{$LOCALSYMBOLS ON}
13+
{$LONGSTRINGS ON}
14+
{$OPENSTRINGS ON}
15+
{$OPTIMIZATION OFF}
16+
{$OVERFLOWCHECKS OFF}
17+
{$RANGECHECKS OFF}
18+
{$REFERENCEINFO ON}
19+
{$SAFEDIVIDE OFF}
20+
{$STACKFRAMES ON}
21+
{$TYPEDADDRESS OFF}
22+
{$VARSTRINGCHECKS ON}
23+
{$WRITEABLECONST OFF}
24+
{$MINENUMSIZE 1}
25+
{$IMAGEBASE $400000}
26+
{$DEFINE DEBUG}
27+
{$ENDIF IMPLICITBUILDING}
28+
{$DESCRIPTION 'Spring4D Base package'}
29+
{$LIBSUFFIX '.Delphi10Sydney'}
30+
{$RUNONLY}
31+
{$IMPLICITBUILD OFF}
32+
33+
{$I Spring.inc}
34+
35+
requires
36+
{$IFDEF FMX}
37+
fmx,
38+
{$ENDIF}
39+
rtl;
40+
41+
contains
42+
Spring in '..\..\Source\Base\Spring.pas',
43+
Spring.Collections in '..\..\Source\Base\Collections\Spring.Collections.pas',
44+
Spring.Collections.Base in '..\..\Source\Base\Collections\Spring.Collections.Base.pas',
45+
Spring.Collections.Dictionaries in '..\..\Source\Base\Collections\Spring.Collections.Dictionaries.pas',
46+
Spring.Collections.Events in '..\..\Source\Base\Collections\Spring.Collections.Events.pas',
47+
Spring.Collections.Extensions in '..\..\Source\Base\Collections\Spring.Collections.Extensions.pas',
48+
Spring.Collections.HashTable in '..\..\Source\Base\Collections\Spring.Collections.HashTable.pas',
49+
Spring.Collections.Lists in '..\..\Source\Base\Collections\Spring.Collections.Lists.pas',
50+
Spring.Collections.LinkedLists in '..\..\Source\Base\Collections\Spring.Collections.LinkedLists.pas',
51+
Spring.Collections.MultiMaps in '..\..\Source\Base\Collections\Spring.Collections.MultiMaps.pas',
52+
Spring.Collections.MultiSets in '..\..\Source\Base\Collections\Spring.Collections.MultiSets.pas',
53+
Spring.Collections.Queues in '..\..\Source\Base\Collections\Spring.Collections.Queues.pas',
54+
Spring.Collections.Sets in '..\..\Source\Base\Collections\Spring.Collections.Sets.pas',
55+
Spring.Collections.Stacks in '..\..\Source\Base\Collections\Spring.Collections.Stacks.pas',
56+
Spring.Collections.Trees in '..\..\Source\Base\Collections\Spring.Collections.Trees.pas',
57+
Spring.DesignPatterns in '..\..\Source\Base\Spring.DesignPatterns.pas',
58+
Spring.Events in '..\..\Source\Base\Spring.Events.pas',
59+
Spring.Events.Base in '..\..\Source\Base\Spring.Events.Base.pas',
60+
Spring.Helpers in '..\..\Source\Base\Spring.Helpers.pas',
61+
Spring.Logging in '..\..\Source\Base\Logging\Spring.Logging.pas',
62+
Spring.Logging.Appenders in '..\..\Source\Base\Logging\Spring.Logging.Appenders.pas',
63+
Spring.Logging.Appenders.Base in '..\..\Source\Base\Logging\Spring.Logging.Appenders.Base.pas',
64+
Spring.Logging.Controller in '..\..\Source\Base\Logging\Spring.Logging.Controller.pas',
65+
Spring.Logging.Extensions in '..\..\Source\Base\Logging\Spring.Logging.Extensions.pas',
66+
Spring.Logging.Loggers in '..\..\Source\Base\Logging\Spring.Logging.Loggers.pas',
67+
Spring.Logging.NullLogger in '..\..\Source\Base\Logging\Spring.Logging.NullLogger.pas',
68+
Spring.Logging.ResourceStrings in '..\..\Source\Base\Logging\Spring.Logging.ResourceStrings.pas',
69+
Spring.Logging.Serializers in '..\..\Source\Base\Logging\Spring.Logging.Serializers.pas',
70+
Spring.MethodIntercept in '..\..\Source\Base\Spring.MethodIntercept.pas',
71+
Spring.Patterns.Specification in '..\..\Source\Base\Patterns\Spring.Patterns.Specification.pas',
72+
Spring.Reflection in '..\..\Source\Base\Spring.Reflection.pas',
73+
Spring.ResourceStrings in '..\..\Source\Base\Spring.ResourceStrings.pas',
74+
Spring.SystemUtils in '..\..\Source\Base\Spring.SystemUtils.pas',
75+
Spring.Times in '..\..\Source\Base\Spring.Times.pas',
76+
Spring.ValueConverters in '..\..\Source\Base\Spring.ValueConverters.pas',
77+
Spring.VirtualClass in '..\..\Source\Base\Spring.VirtualClass.pas',
78+
Spring.VirtualInterface in '..\..\Source\Base\Spring.VirtualInterface.pas';
79+
80+
end.
Lines changed: 187 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,187 @@
1+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<PropertyGroup>
3+
<ProjectGuid>{8F00FFD6-085B-4B31-B6A2-D3157F252221}</ProjectGuid>
4+
<MainSource>Spring.Base.dpk</MainSource>
5+
<Base>True</Base>
6+
<Config Condition="'$(Config)'==''">Debug</Config>
7+
<TargetedPlatforms>3</TargetedPlatforms>
8+
<AppType>Package</AppType>
9+
<FrameworkType>None</FrameworkType>
10+
<ProjectVersion>19.0</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="'$(Base)'!=''">
37+
<DllSuffix>.Delphi10Sydney</DllSuffix>
38+
<SanitizedProjectName>Spring_Base</SanitizedProjectName>
39+
<GenPackage>true</GenPackage>
40+
<DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;Vcl;$(DCC_Namespace)</DCC_Namespace>
41+
<VerInfo_Locale>2052</VerInfo_Locale>
42+
<DCC_ImageBase>00400000</DCC_ImageBase>
43+
<DCC_S>false</DCC_S>
44+
<DCC_OutputNeverBuildDcps>true</DCC_OutputNeverBuildDcps>
45+
<DCC_F>false</DCC_F>
46+
<DCC_DcuOutput>..\..\Library\Delphi10Sydney\$(Platform)\$(Config)</DCC_DcuOutput>
47+
<DCC_K>false</DCC_K>
48+
<RuntimeOnlyPackage>true</RuntimeOnlyPackage>
49+
<DCC_UnitSearchPath>..\..\Source;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
50+
<DCC_N>false</DCC_N>
51+
<DCC_E>false</DCC_E>
52+
<GenDll>true</GenDll>
53+
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName=;CFBundleDisplayName=;UIDeviceFamily=;CFBundleIdentifier=;CFBundleVersion=;CFBundlePackageType=;CFBundleSignature=;CFBundleAllowMixedLocalizations=;UISupportedInterfaceOrientations=;CFBundleExecutable=;CFBundleResourceSpecification=;LSRequiresIPhoneOS=;CFBundleInfoDictionaryVersion=;CFBundleDevelopmentRegion=</VerInfo_Keys>
54+
<DCC_Description>Spring4D Base package</DCC_Description>
55+
</PropertyGroup>
56+
<PropertyGroup Condition="'$(Base_Win32)'!=''">
57+
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
58+
</PropertyGroup>
59+
<PropertyGroup Condition="'$(Base_Win64)'!=''">
60+
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
61+
</PropertyGroup>
62+
<PropertyGroup Condition="'$(Cfg_1)'!=''">
63+
<DCC_DebugInformation>0</DCC_DebugInformation>
64+
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
65+
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
66+
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
67+
</PropertyGroup>
68+
<PropertyGroup Condition="'$(Cfg_2)'!=''">
69+
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
70+
<DCC_Optimize>false</DCC_Optimize>
71+
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
72+
</PropertyGroup>
73+
<ItemGroup>
74+
<DelphiCompile Include="$(MainSource)">
75+
<MainSource>MainSource</MainSource>
76+
</DelphiCompile>
77+
<DCCReference Include="rtl.dcp"/>
78+
<DCCReference Include="..\..\Source\Base\Spring.pas"/>
79+
<DCCReference Include="..\..\Source\Base\Collections\Spring.Collections.pas"/>
80+
<DCCReference Include="..\..\Source\Base\Collections\Spring.Collections.Base.pas"/>
81+
<DCCReference Include="..\..\Source\Base\Collections\Spring.Collections.Dictionaries.pas"/>
82+
<DCCReference Include="..\..\Source\Base\Collections\Spring.Collections.Events.pas"/>
83+
<DCCReference Include="..\..\Source\Base\Collections\Spring.Collections.Extensions.pas"/>
84+
<DCCReference Include="..\..\Source\Base\Collections\Spring.Collections.HashTable.pas"/>
85+
<DCCReference Include="..\..\Source\Base\Collections\Spring.Collections.Lists.pas"/>
86+
<DCCReference Include="..\..\Source\Base\Collections\Spring.Collections.LinkedLists.pas"/>
87+
<DCCReference Include="..\..\Source\Base\Collections\Spring.Collections.MultiMaps.pas"/>
88+
<DCCReference Include="..\..\Source\Base\Collections\Spring.Collections.MultiSets.pas"/>
89+
<DCCReference Include="..\..\Source\Base\Collections\Spring.Collections.Queues.pas"/>
90+
<DCCReference Include="..\..\Source\Base\Collections\Spring.Collections.Sets.pas"/>
91+
<DCCReference Include="..\..\Source\Base\Collections\Spring.Collections.Stacks.pas"/>
92+
<DCCReference Include="..\..\Source\Base\Collections\Spring.Collections.Trees.pas"/>
93+
<DCCReference Include="..\..\Source\Base\Spring.DesignPatterns.pas"/>
94+
<DCCReference Include="..\..\Source\Base\Spring.Events.pas"/>
95+
<DCCReference Include="..\..\Source\Base\Spring.Events.Base.pas"/>
96+
<DCCReference Include="..\..\Source\Base\Spring.Helpers.pas"/>
97+
<DCCReference Include="..\..\Source\Base\Logging\Spring.Logging.pas"/>
98+
<DCCReference Include="..\..\Source\Base\Logging\Spring.Logging.Appenders.pas"/>
99+
<DCCReference Include="..\..\Source\Base\Logging\Spring.Logging.Appenders.Base.pas"/>
100+
<DCCReference Include="..\..\Source\Base\Logging\Spring.Logging.Controller.pas"/>
101+
<DCCReference Include="..\..\Source\Base\Logging\Spring.Logging.Extensions.pas"/>
102+
<DCCReference Include="..\..\Source\Base\Logging\Spring.Logging.Loggers.pas"/>
103+
<DCCReference Include="..\..\Source\Base\Logging\Spring.Logging.NullLogger.pas"/>
104+
<DCCReference Include="..\..\Source\Base\Logging\Spring.Logging.ResourceStrings.pas"/>
105+
<DCCReference Include="..\..\Source\Base\Logging\Spring.Logging.Serializers.pas"/>
106+
<DCCReference Include="..\..\Source\Base\Spring.MethodIntercept.pas"/>
107+
<DCCReference Include="..\..\Source\Base\Patterns\Spring.Patterns.Specification.pas"/>
108+
<DCCReference Include="..\..\Source\Base\Spring.Reflection.pas"/>
109+
<DCCReference Include="..\..\Source\Base\Spring.ResourceStrings.pas"/>
110+
<DCCReference Include="..\..\Source\Base\Spring.SystemUtils.pas"/>
111+
<DCCReference Include="..\..\Source\Base\Spring.Times.pas"/>
112+
<DCCReference Include="..\..\Source\Base\Spring.ValueConverters.pas"/>
113+
<DCCReference Include="..\..\Source\Base\Spring.VirtualClass.pas"/>
114+
<DCCReference Include="..\..\Source\Base\Spring.VirtualInterface.pas"/>
115+
<BuildConfiguration Include="Debug">
116+
<Key>Cfg_2</Key>
117+
<CfgParent>Base</CfgParent>
118+
</BuildConfiguration>
119+
<BuildConfiguration Include="Base">
120+
<Key>Base</Key>
121+
</BuildConfiguration>
122+
<BuildConfiguration Include="Release">
123+
<Key>Cfg_1</Key>
124+
<CfgParent>Base</CfgParent>
125+
</BuildConfiguration>
126+
</ItemGroup>
127+
<ProjectExtensions>
128+
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
129+
<Borland.ProjectType>Package</Borland.ProjectType>
130+
<BorlandProject>
131+
<Delphi.Personality>
132+
<Source>
133+
<Source Name="MainSource">Spring.Base.dpk</Source>
134+
</Source>
135+
<VersionInfo>
136+
<VersionInfo Name="IncludeVerInfo">True</VersionInfo>
137+
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
138+
<VersionInfo Name="MajorVer">1</VersionInfo>
139+
<VersionInfo Name="MinorVer">0</VersionInfo>
140+
<VersionInfo Name="Release">0</VersionInfo>
141+
<VersionInfo Name="Build">0</VersionInfo>
142+
<VersionInfo Name="Debug">False</VersionInfo>
143+
<VersionInfo Name="PreRelease">False</VersionInfo>
144+
<VersionInfo Name="Special">False</VersionInfo>
145+
<VersionInfo Name="Private">False</VersionInfo>
146+
<VersionInfo Name="DLL">False</VersionInfo>
147+
<VersionInfo Name="Locale">2052</VersionInfo>
148+
<VersionInfo Name="CodePage">936</VersionInfo>
149+
</VersionInfo>
150+
<VersionInfoKeys>
151+
<VersionInfoKeys Name="CompanyName"/>
152+
<VersionInfoKeys Name="FileDescription"/>
153+
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
154+
<VersionInfoKeys Name="InternalName"/>
155+
<VersionInfoKeys Name="LegalCopyright"/>
156+
<VersionInfoKeys Name="LegalTrademarks"/>
157+
<VersionInfoKeys Name="OriginalFilename"/>
158+
<VersionInfoKeys Name="ProductName"/>
159+
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
160+
<VersionInfoKeys Name="Comments"/>
161+
<VersionInfoKeys Name="CFBundleName"/>
162+
<VersionInfoKeys Name="CFBundleDisplayName"/>
163+
<VersionInfoKeys Name="UIDeviceFamily"/>
164+
<VersionInfoKeys Name="CFBundleIdentifier"/>
165+
<VersionInfoKeys Name="CFBundleVersion"/>
166+
<VersionInfoKeys Name="CFBundlePackageType"/>
167+
<VersionInfoKeys Name="CFBundleSignature"/>
168+
<VersionInfoKeys Name="CFBundleAllowMixedLocalizations"/>
169+
<VersionInfoKeys Name="UISupportedInterfaceOrientations"/>
170+
<VersionInfoKeys Name="CFBundleExecutable"/>
171+
<VersionInfoKeys Name="CFBundleResourceSpecification"/>
172+
<VersionInfoKeys Name="LSRequiresIPhoneOS"/>
173+
<VersionInfoKeys Name="CFBundleInfoDictionaryVersion"/>
174+
<VersionInfoKeys Name="CFBundleDevelopmentRegion"/>
175+
</VersionInfoKeys>
176+
<Excluded_Packages/>
177+
</Delphi.Personality>
178+
<Platforms>
179+
<Platform value="Win32">True</Platform>
180+
<Platform value="Win64">True</Platform>
181+
</Platforms>
182+
</BorlandProject>
183+
<ProjectFileVersion>12</ProjectFileVersion>
184+
</ProjectExtensions>
185+
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
186+
<Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
187+
</Project>
96 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)