Initial check in
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
# Set the default behavior, in case people don't have core.autocrlf set.
|
||||
* text=auto
|
||||
|
||||
# Explicitly declare text files you want to always be normalized and converted
|
||||
# to native line endings on checkout.
|
||||
*.pas text
|
||||
*.dfm text
|
||||
|
||||
# Declare files that will always have CRLF line endings on checkout.
|
||||
|
||||
# Denote all files that are truly binary and should not be modified.
|
||||
*.exe binary
|
||||
*.res binary
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
# IDE files
|
||||
*.~*
|
||||
*.cbk
|
||||
*.dsk
|
||||
*.identcache
|
||||
*.local
|
||||
*.skincfg
|
||||
*.stat
|
||||
*.tvsconfig
|
||||
__history/
|
||||
__recovery/
|
||||
.vscode/
|
||||
|
||||
# Delphi Compiler output files
|
||||
*.dcu
|
||||
*.drc
|
||||
*.jdbg
|
||||
*.map
|
||||
*.plist
|
||||
*.rsm
|
||||
*.tds
|
||||
|
||||
# 64bit Delphi files
|
||||
*.o
|
||||
|
||||
# Added in XE8
|
||||
*.stat
|
||||
|
||||
# Spring4D files
|
||||
*.bak
|
||||
*.ficfg
|
||||
*.mes
|
||||
Library/
|
||||
Logs/
|
||||
Samples/**/*.exe
|
||||
Tests/Bin/
|
||||
|
||||
# TestInsight files
|
||||
TestInsightSettings.ini
|
||||
@@ -0,0 +1,3 @@
|
||||
[submodule "src.spring4d"]
|
||||
path = src.spring4d
|
||||
url = https://bitbucket.org/sglienke/spring4d.git
|
||||
@@ -0,0 +1,79 @@
|
||||
package Spring.Base;
|
||||
|
||||
{$R *.res}
|
||||
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
|
||||
{$ALIGN 8}
|
||||
{$ASSERTIONS ON}
|
||||
{$BOOLEVAL OFF}
|
||||
{$DEBUGINFO OFF}
|
||||
{$EXTENDEDSYNTAX ON}
|
||||
{$IMPORTEDDATA ON}
|
||||
{$IOCHECKS ON}
|
||||
{$LOCALSYMBOLS OFF}
|
||||
{$LONGSTRINGS ON}
|
||||
{$OPENSTRINGS ON}
|
||||
{$OPTIMIZATION ON}
|
||||
{$OVERFLOWCHECKS OFF}
|
||||
{$RANGECHECKS OFF}
|
||||
{$REFERENCEINFO OFF}
|
||||
{$SAFEDIVIDE OFF}
|
||||
{$STACKFRAMES OFF}
|
||||
{$TYPEDADDRESS OFF}
|
||||
{$VARSTRINGCHECKS ON}
|
||||
{$WRITEABLECONST OFF}
|
||||
{$MINENUMSIZE 1}
|
||||
{$IMAGEBASE $400000}
|
||||
{$DEFINE RELEASE}
|
||||
{$ENDIF IMPLICITBUILDING}
|
||||
{$DESCRIPTION 'Spring4D Base package'}
|
||||
{$LIBSUFFIX '.290'}
|
||||
{$RUNONLY}
|
||||
{$IMPLICITBUILD OFF}
|
||||
|
||||
requires
|
||||
rtl;
|
||||
|
||||
contains
|
||||
Spring in '..\..\src.spring4d\Source\Base\Spring.pas',
|
||||
Spring.Collections in '..\..\src.spring4d\Source\Base\Collections\Spring.Collections.pas',
|
||||
Spring.Collections.Base in '..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Base.pas',
|
||||
Spring.Collections.Dictionaries in '..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Dictionaries.pas',
|
||||
Spring.Collections.Events in '..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Events.pas',
|
||||
Spring.Collections.Extensions in '..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Extensions.pas',
|
||||
Spring.Collections.Lists in '..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Lists.pas',
|
||||
Spring.Collections.LinkedLists in '..\..\src.spring4d\Source\Base\Collections\Spring.Collections.LinkedLists.pas',
|
||||
Spring.Collections.MultiMaps in '..\..\src.spring4d\Source\Base\Collections\Spring.Collections.MultiMaps.pas',
|
||||
Spring.Collections.MultiSets in '..\..\src.spring4d\Source\Base\Collections\Spring.Collections.MultiSets.pas',
|
||||
Spring.Collections.Queues in '..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Queues.pas',
|
||||
Spring.Collections.Sets in '..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Sets.pas',
|
||||
Spring.Collections.Stacks in '..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Stacks.pas',
|
||||
Spring.Collections.Trees in '..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Trees.pas',
|
||||
Spring.Comparers in '..\..\src.spring4d\Source\Base\Spring.Comparers.pas',
|
||||
Spring.DesignPatterns in '..\..\src.spring4d\Source\Base\Spring.DesignPatterns.pas',
|
||||
Spring.Events in '..\..\src.spring4d\Source\Base\Spring.Events.pas',
|
||||
Spring.Events.Base in '..\..\src.spring4d\Source\Base\Spring.Events.Base.pas',
|
||||
Spring.Hash in '..\..\src.spring4d\Source\Base\Spring.Hash.pas',
|
||||
Spring.HashTable in '..\..\src.spring4d\Source\Base\Spring.HashTable.pas',
|
||||
Spring.HazardEra in '..\..\src.spring4d\Source\Base\Spring.HazardEra.pas',
|
||||
Spring.Helpers in '..\..\src.spring4d\Source\Base\Spring.Helpers.pas',
|
||||
Spring.Logging in '..\..\src.spring4d\Source\Base\Logging\Spring.Logging.pas',
|
||||
Spring.Logging.Appenders in '..\..\src.spring4d\Source\Base\Logging\Spring.Logging.Appenders.pas',
|
||||
Spring.Logging.Appenders.Base in '..\..\src.spring4d\Source\Base\Logging\Spring.Logging.Appenders.Base.pas',
|
||||
Spring.Logging.Controller in '..\..\src.spring4d\Source\Base\Logging\Spring.Logging.Controller.pas',
|
||||
Spring.Logging.Extensions in '..\..\src.spring4d\Source\Base\Logging\Spring.Logging.Extensions.pas',
|
||||
Spring.Logging.Loggers in '..\..\src.spring4d\Source\Base\Logging\Spring.Logging.Loggers.pas',
|
||||
Spring.Logging.NullLogger in '..\..\src.spring4d\Source\Base\Logging\Spring.Logging.NullLogger.pas',
|
||||
Spring.Logging.ResourceStrings in '..\..\src.spring4d\Source\Base\Logging\Spring.Logging.ResourceStrings.pas',
|
||||
Spring.Logging.Serializers in '..\..\src.spring4d\Source\Base\Logging\Spring.Logging.Serializers.pas',
|
||||
Spring.MethodIntercept in '..\..\src.spring4d\Source\Base\Spring.MethodIntercept.pas',
|
||||
Spring.Patches.RSP13163 in '..\..\src.spring4d\Source\Base\Patches\Spring.Patches.RSP13163.pas',
|
||||
Spring.Patterns.Specification in '..\..\src.spring4d\Source\Base\Patterns\Spring.Patterns.Specification.pas',
|
||||
Spring.Reflection in '..\..\src.spring4d\Source\Base\Spring.Reflection.pas',
|
||||
Spring.ResourceStrings in '..\..\src.spring4d\Source\Base\Spring.ResourceStrings.pas',
|
||||
Spring.SystemUtils in '..\..\src.spring4d\Source\Base\Spring.SystemUtils.pas',
|
||||
Spring.Times in '..\..\src.spring4d\Source\Base\Spring.Times.pas',
|
||||
Spring.ValueConverters in '..\..\src.spring4d\Source\Base\Spring.ValueConverters.pas',
|
||||
Spring.VirtualClass in '..\..\src.spring4d\Source\Base\Spring.VirtualClass.pas',
|
||||
Spring.VirtualInterface in '..\..\src.spring4d\Source\Base\Spring.VirtualInterface.pas';
|
||||
|
||||
end.
|
||||
@@ -0,0 +1,211 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectGuid>{8F00FFD6-085B-4B31-B6A2-D3157F252221}</ProjectGuid>
|
||||
<MainSource>Spring.Base.dpk</MainSource>
|
||||
<Base>True</Base>
|
||||
<Config Condition="'$(Config)'==''">Release</Config>
|
||||
<TargetedPlatforms>3</TargetedPlatforms>
|
||||
<AppType>Package</AppType>
|
||||
<FrameworkType>None</FrameworkType>
|
||||
<ProjectVersion>20.3</ProjectVersion>
|
||||
<Platform Condition="'$(Platform)'==''">Win32</Platform>
|
||||
<ProjectName Condition="'$(ProjectName)'==''">Spring.Base</ProjectName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
|
||||
<Base_Win32>true</Base_Win32>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
|
||||
<Base_Win64>true</Base_Win64>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="('$(Platform)'=='Win64x' and '$(Base)'=='true') or '$(Base_Win64x)'!=''">
|
||||
<Base_Win64x>true</Base_Win64x>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''">
|
||||
<Cfg_1>true</Cfg_1>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''">
|
||||
<Cfg_2>true</Cfg_2>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base)'!=''">
|
||||
<DllSuffix>.290</DllSuffix>
|
||||
<SanitizedProjectName>Spring_Base</SanitizedProjectName>
|
||||
<GenPackage>true</GenPackage>
|
||||
<DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;Vcl;$(DCC_Namespace)</DCC_Namespace>
|
||||
<VerInfo_Locale>2052</VerInfo_Locale>
|
||||
<DCC_ImageBase>00400000</DCC_ImageBase>
|
||||
<DCC_S>false</DCC_S>
|
||||
<DCC_OutputNeverBuildDcps>true</DCC_OutputNeverBuildDcps>
|
||||
<DCC_F>false</DCC_F>
|
||||
<DCC_DcuOutput>..\..\dcu\Delphi12\$(Platform)\$(Config)</DCC_DcuOutput>
|
||||
<DCC_K>false</DCC_K>
|
||||
<RuntimeOnlyPackage>true</RuntimeOnlyPackage>
|
||||
<DCC_UnitSearchPath>..\..\src.spring4d\Source;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
|
||||
<DCC_N>false</DCC_N>
|
||||
<DCC_E>false</DCC_E>
|
||||
<GenDll>true</GenDll>
|
||||
<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>
|
||||
<DCC_Description>Spring4D Base package</DCC_Description>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base_Win32)'!=''">
|
||||
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base_Win64)'!=''">
|
||||
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base_Win64x)'!=''">
|
||||
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
|
||||
<BT_BuildType>Debug</BT_BuildType>
|
||||
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
|
||||
<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>
|
||||
<VerInfo_Locale>1033</VerInfo_Locale>
|
||||
<BCC_EnableBatchCompilation>true</BCC_EnableBatchCompilation>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Cfg_1)'!=''">
|
||||
<DCC_DebugInformation>0</DCC_DebugInformation>
|
||||
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
|
||||
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
|
||||
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Cfg_2)'!=''">
|
||||
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
|
||||
<DCC_Optimize>false</DCC_Optimize>
|
||||
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
|
||||
<DCC_IntegerOverflowCheck>true</DCC_IntegerOverflowCheck>
|
||||
<DCC_RangeChecking>true</DCC_RangeChecking>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<DelphiCompile Include="$(MainSource)">
|
||||
<MainSource>MainSource</MainSource>
|
||||
</DelphiCompile>
|
||||
<DCCReference Include="rtl.dcp"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Collections\Spring.Collections.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Base.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Dictionaries.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Events.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Extensions.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Lists.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Collections\Spring.Collections.LinkedLists.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Collections\Spring.Collections.MultiMaps.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Collections\Spring.Collections.MultiSets.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Queues.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Sets.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Stacks.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Collections\Spring.Collections.Trees.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.Comparers.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.DesignPatterns.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.Events.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.Events.Base.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.Hash.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.HashTable.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.HazardEra.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.Helpers.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Logging\Spring.Logging.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Logging\Spring.Logging.Appenders.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Logging\Spring.Logging.Appenders.Base.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Logging\Spring.Logging.Controller.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Logging\Spring.Logging.Extensions.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Logging\Spring.Logging.Loggers.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Logging\Spring.Logging.NullLogger.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Logging\Spring.Logging.ResourceStrings.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Logging\Spring.Logging.Serializers.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.MethodIntercept.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Patches\Spring.Patches.RSP13163.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Patterns\Spring.Patterns.Specification.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.Reflection.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.ResourceStrings.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.SystemUtils.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.Times.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.ValueConverters.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.VirtualClass.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Base\Spring.VirtualInterface.pas"/>
|
||||
<BuildConfiguration Include="Base">
|
||||
<Key>Base</Key>
|
||||
</BuildConfiguration>
|
||||
<BuildConfiguration Include="Release">
|
||||
<Key>Cfg_1</Key>
|
||||
<CfgParent>Base</CfgParent>
|
||||
</BuildConfiguration>
|
||||
<BuildConfiguration Include="Debug">
|
||||
<Key>Cfg_2</Key>
|
||||
<CfgParent>Base</CfgParent>
|
||||
</BuildConfiguration>
|
||||
</ItemGroup>
|
||||
<ProjectExtensions>
|
||||
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
|
||||
<Borland.ProjectType>Package</Borland.ProjectType>
|
||||
<BorlandProject>
|
||||
<Delphi.Personality>
|
||||
<Source>
|
||||
<Source Name="MainSource">Spring.Base.dpk</Source>
|
||||
</Source>
|
||||
<VersionInfo>
|
||||
<VersionInfo Name="IncludeVerInfo">True</VersionInfo>
|
||||
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
||||
<VersionInfo Name="MajorVer">1</VersionInfo>
|
||||
<VersionInfo Name="MinorVer">0</VersionInfo>
|
||||
<VersionInfo Name="Release">0</VersionInfo>
|
||||
<VersionInfo Name="Build">0</VersionInfo>
|
||||
<VersionInfo Name="Debug">False</VersionInfo>
|
||||
<VersionInfo Name="PreRelease">False</VersionInfo>
|
||||
<VersionInfo Name="Special">False</VersionInfo>
|
||||
<VersionInfo Name="Private">False</VersionInfo>
|
||||
<VersionInfo Name="DLL">False</VersionInfo>
|
||||
<VersionInfo Name="Locale">2052</VersionInfo>
|
||||
<VersionInfo Name="CodePage">936</VersionInfo>
|
||||
</VersionInfo>
|
||||
<VersionInfoKeys>
|
||||
<VersionInfoKeys Name="CompanyName"/>
|
||||
<VersionInfoKeys Name="FileDescription"/>
|
||||
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="InternalName"/>
|
||||
<VersionInfoKeys Name="LegalCopyright"/>
|
||||
<VersionInfoKeys Name="LegalTrademarks"/>
|
||||
<VersionInfoKeys Name="OriginalFilename"/>
|
||||
<VersionInfoKeys Name="ProductName"/>
|
||||
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="Comments"/>
|
||||
<VersionInfoKeys Name="CFBundleName"/>
|
||||
<VersionInfoKeys Name="CFBundleDisplayName"/>
|
||||
<VersionInfoKeys Name="UIDeviceFamily"/>
|
||||
<VersionInfoKeys Name="CFBundleIdentifier"/>
|
||||
<VersionInfoKeys Name="CFBundleVersion"/>
|
||||
<VersionInfoKeys Name="CFBundlePackageType"/>
|
||||
<VersionInfoKeys Name="CFBundleSignature"/>
|
||||
<VersionInfoKeys Name="CFBundleAllowMixedLocalizations"/>
|
||||
<VersionInfoKeys Name="UISupportedInterfaceOrientations"/>
|
||||
<VersionInfoKeys Name="CFBundleExecutable"/>
|
||||
<VersionInfoKeys Name="CFBundleResourceSpecification"/>
|
||||
<VersionInfoKeys Name="LSRequiresIPhoneOS"/>
|
||||
<VersionInfoKeys Name="CFBundleInfoDictionaryVersion"/>
|
||||
<VersionInfoKeys Name="CFBundleDevelopmentRegion"/>
|
||||
</VersionInfoKeys>
|
||||
<Excluded_Packages>
|
||||
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k290.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
|
||||
<Excluded_Packages Name="$(BDSBIN)\dclofficexp290.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
|
||||
</Excluded_Packages>
|
||||
</Delphi.Personality>
|
||||
<Platforms>
|
||||
<Platform value="Win32">True</Platform>
|
||||
<Platform value="Win64">True</Platform>
|
||||
<Platform value="Win64x">False</Platform>
|
||||
</Platforms>
|
||||
</BorlandProject>
|
||||
<ProjectFileVersion>12</ProjectFileVersion>
|
||||
</ProjectExtensions>
|
||||
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
|
||||
<Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
|
||||
</Project>
|
||||
Binary file not shown.
@@ -0,0 +1,69 @@
|
||||
package Spring.Core;
|
||||
|
||||
{$R *.res}
|
||||
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
|
||||
{$ALIGN 8}
|
||||
{$ASSERTIONS ON}
|
||||
{$BOOLEVAL OFF}
|
||||
{$DEBUGINFO OFF}
|
||||
{$EXTENDEDSYNTAX ON}
|
||||
{$IMPORTEDDATA ON}
|
||||
{$IOCHECKS ON}
|
||||
{$LOCALSYMBOLS ON}
|
||||
{$LONGSTRINGS ON}
|
||||
{$OPENSTRINGS ON}
|
||||
{$OPTIMIZATION OFF}
|
||||
{$OVERFLOWCHECKS ON}
|
||||
{$RANGECHECKS ON}
|
||||
{$REFERENCEINFO ON}
|
||||
{$SAFEDIVIDE OFF}
|
||||
{$STACKFRAMES ON}
|
||||
{$TYPEDADDRESS OFF}
|
||||
{$VARSTRINGCHECKS ON}
|
||||
{$WRITEABLECONST OFF}
|
||||
{$MINENUMSIZE 1}
|
||||
{$IMAGEBASE $400000}
|
||||
{$DEFINE DEBUG}
|
||||
{$ENDIF IMPLICITBUILDING}
|
||||
{$DESCRIPTION 'Spring4D Core package'}
|
||||
{$LIBSUFFIX '.290'}
|
||||
{$RUNONLY}
|
||||
{$IMPLICITBUILD OFF}
|
||||
|
||||
requires
|
||||
rtl,
|
||||
Spring.Base;
|
||||
|
||||
contains
|
||||
Spring.Services in '..\..\src.spring4d\Source\Core\Services\Spring.Services.pas',
|
||||
Spring.Container in '..\..\src.spring4d\Source\Core\Container\Spring.Container.pas',
|
||||
Spring.Container.ActivatorExtension in '..\..\src.spring4d\Source\Core\Container\Spring.Container.ActivatorExtension.pas',
|
||||
Spring.Container.AutoMockExtension in '..\..\src.spring4d\Source\Core\Container\Spring.Container.AutoMockExtension.pas',
|
||||
Spring.Container.Builder in '..\..\src.spring4d\Source\Core\Container\Spring.Container.Builder.pas',
|
||||
Spring.Container.Common in '..\..\src.spring4d\Source\Core\Container\Spring.Container.Common.pas',
|
||||
Spring.Container.ComponentActivator in '..\..\src.spring4d\Source\Core\Container\Spring.Container.ComponentActivator.pas',
|
||||
Spring.Container.Core in '..\..\src.spring4d\Source\Core\Container\Spring.Container.Core.pas',
|
||||
Spring.Container.CreationContext in '..\..\src.spring4d\Source\Core\Container\Spring.Container.CreationContext.pas',
|
||||
Spring.Container.Extensions in '..\..\src.spring4d\Source\Core\Container\Spring.Container.Extensions.pas',
|
||||
Spring.Container.Injection in '..\..\src.spring4d\Source\Core\Container\Spring.Container.Injection.pas',
|
||||
Spring.Container.LifetimeManager in '..\..\src.spring4d\Source\Core\Container\Spring.Container.LifetimeManager.pas',
|
||||
Spring.Container.Pool in '..\..\src.spring4d\Source\Core\Container\Spring.Container.Pool.pas',
|
||||
Spring.Container.ProxyFactory in '..\..\src.spring4d\Source\Core\Container\Spring.Container.ProxyFactory.pas',
|
||||
Spring.Container.Registration in '..\..\src.spring4d\Source\Core\Container\Spring.Container.Registration.pas',
|
||||
Spring.Container.Resolvers in '..\..\src.spring4d\Source\Core\Container\Spring.Container.Resolvers.pas',
|
||||
Spring.Container.ResourceStrings in '..\..\src.spring4d\Source\Core\Container\Spring.Container.ResourceStrings.pas',
|
||||
Spring.Interception in '..\..\src.spring4d\Source\Core\Interception\Spring.Interception.pas',
|
||||
Spring.Interception.AbstractInvocation in '..\..\src.spring4d\Source\Core\Interception\Spring.Interception.AbstractInvocation.pas',
|
||||
Spring.Interception.ClassProxy in '..\..\src.spring4d\Source\Core\Interception\Spring.Interception.ClassProxy.pas',
|
||||
Spring.Interception.CustomProxy in '..\..\src.spring4d\Source\Core\Interception\Spring.Interception.CustomProxy.pas',
|
||||
Spring.Interception.InterfaceProxy in '..\..\src.spring4d\Source\Core\Interception\Spring.Interception.InterfaceProxy.pas',
|
||||
Spring.Interception.ResourceStrings in '..\..\src.spring4d\Source\Core\Interception\Spring.Interception.ResourceStrings.pas',
|
||||
Spring.Logging.Configuration in '..\..\src.spring4d\Source\Core\Logging\Spring.Logging.Configuration.pas',
|
||||
Spring.Logging.Configuration.Builder in '..\..\src.spring4d\Source\Core\Logging\Spring.Logging.Configuration.Builder.pas',
|
||||
Spring.Logging.Container in '..\..\src.spring4d\Source\Core\Logging\Spring.Logging.Container.pas',
|
||||
Spring.Mocking in '..\..\src.spring4d\Source\Core\Mocking\Spring.Mocking.pas',
|
||||
Spring.Mocking.Core in '..\..\src.spring4d\Source\Core\Mocking\Spring.Mocking.Core.pas',
|
||||
Spring.Mocking.Interceptor in '..\..\src.spring4d\Source\Core\Mocking\Spring.Mocking.Interceptor.pas',
|
||||
Spring.Mocking.Matching in '..\..\src.spring4d\Source\Core\Mocking\Spring.Mocking.Matching.pas';
|
||||
|
||||
end.
|
||||
@@ -0,0 +1,201 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectGuid>{3F933A25-7C87-419F-B285-EE0B5E3F0B73}</ProjectGuid>
|
||||
<MainSource>Spring.Core.dpk</MainSource>
|
||||
<Base>True</Base>
|
||||
<Config Condition="'$(Config)'==''">Release</Config>
|
||||
<TargetedPlatforms>3</TargetedPlatforms>
|
||||
<AppType>Package</AppType>
|
||||
<FrameworkType>None</FrameworkType>
|
||||
<ProjectVersion>20.3</ProjectVersion>
|
||||
<Platform Condition="'$(Platform)'==''">Win32</Platform>
|
||||
<ProjectName Condition="'$(ProjectName)'==''">Spring.Core</ProjectName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
|
||||
<Base_Win32>true</Base_Win32>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
|
||||
<Base_Win64>true</Base_Win64>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="('$(Platform)'=='Win64x' and '$(Base)'=='true') or '$(Base_Win64x)'!=''">
|
||||
<Base_Win64x>true</Base_Win64x>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''">
|
||||
<Cfg_1>true</Cfg_1>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''">
|
||||
<Cfg_2>true</Cfg_2>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base)'!=''">
|
||||
<DllSuffix>.290</DllSuffix>
|
||||
<SanitizedProjectName>Spring_Core</SanitizedProjectName>
|
||||
<GenPackage>true</GenPackage>
|
||||
<DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace)</DCC_Namespace>
|
||||
<VerInfo_Locale>2052</VerInfo_Locale>
|
||||
<DCC_ImageBase>00400000</DCC_ImageBase>
|
||||
<DCC_S>false</DCC_S>
|
||||
<DCC_OutputNeverBuildDcps>true</DCC_OutputNeverBuildDcps>
|
||||
<DCC_F>false</DCC_F>
|
||||
<DCC_DcuOutput>..\..\dcu\Delphi12\$(Platform)\$(Config)</DCC_DcuOutput>
|
||||
<DCC_K>false</DCC_K>
|
||||
<RuntimeOnlyPackage>true</RuntimeOnlyPackage>
|
||||
<DCC_UnitSearchPath>..\..\src.spring4d\Source;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
|
||||
<DCC_N>false</DCC_N>
|
||||
<DCC_E>false</DCC_E>
|
||||
<GenDll>true</GenDll>
|
||||
<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>
|
||||
<DCC_Description>Spring4D Core package</DCC_Description>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base_Win32)'!=''">
|
||||
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base_Win64)'!=''">
|
||||
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base_Win64x)'!=''">
|
||||
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
|
||||
<BT_BuildType>Debug</BT_BuildType>
|
||||
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
|
||||
<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>
|
||||
<VerInfo_Locale>1033</VerInfo_Locale>
|
||||
<BCC_EnableBatchCompilation>true</BCC_EnableBatchCompilation>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Cfg_1)'!=''">
|
||||
<DCC_DebugInformation>0</DCC_DebugInformation>
|
||||
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
|
||||
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
|
||||
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Cfg_2)'!=''">
|
||||
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
|
||||
<DCC_Optimize>false</DCC_Optimize>
|
||||
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
|
||||
<DCC_IntegerOverflowCheck>true</DCC_IntegerOverflowCheck>
|
||||
<DCC_RangeChecking>true</DCC_RangeChecking>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<DelphiCompile Include="$(MainSource)">
|
||||
<MainSource>MainSource</MainSource>
|
||||
</DelphiCompile>
|
||||
<DCCReference Include="rtl.dcp"/>
|
||||
<DCCReference Include="Spring.Base.dcp"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Services\Spring.Services.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Container\Spring.Container.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Container\Spring.Container.ActivatorExtension.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Container\Spring.Container.AutoMockExtension.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Container\Spring.Container.Builder.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Container\Spring.Container.Common.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Container\Spring.Container.ComponentActivator.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Container\Spring.Container.Core.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Container\Spring.Container.CreationContext.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Container\Spring.Container.Extensions.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Container\Spring.Container.Injection.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Container\Spring.Container.LifetimeManager.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Container\Spring.Container.Pool.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Container\Spring.Container.ProxyFactory.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Container\Spring.Container.Registration.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Container\Spring.Container.Resolvers.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Container\Spring.Container.ResourceStrings.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Interception\Spring.Interception.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Interception\Spring.Interception.AbstractInvocation.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Interception\Spring.Interception.ClassProxy.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Interception\Spring.Interception.CustomProxy.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Interception\Spring.Interception.InterfaceProxy.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Interception\Spring.Interception.ResourceStrings.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Logging\Spring.Logging.Configuration.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Logging\Spring.Logging.Configuration.Builder.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Logging\Spring.Logging.Container.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Mocking\Spring.Mocking.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Mocking\Spring.Mocking.Core.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Mocking\Spring.Mocking.Interceptor.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Core\Mocking\Spring.Mocking.Matching.pas"/>
|
||||
<BuildConfiguration Include="Base">
|
||||
<Key>Base</Key>
|
||||
</BuildConfiguration>
|
||||
<BuildConfiguration Include="Release">
|
||||
<Key>Cfg_1</Key>
|
||||
<CfgParent>Base</CfgParent>
|
||||
</BuildConfiguration>
|
||||
<BuildConfiguration Include="Debug">
|
||||
<Key>Cfg_2</Key>
|
||||
<CfgParent>Base</CfgParent>
|
||||
</BuildConfiguration>
|
||||
</ItemGroup>
|
||||
<ProjectExtensions>
|
||||
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
|
||||
<Borland.ProjectType>Package</Borland.ProjectType>
|
||||
<BorlandProject>
|
||||
<Delphi.Personality>
|
||||
<Source>
|
||||
<Source Name="MainSource">Spring.Core.dpk</Source>
|
||||
</Source>
|
||||
<VersionInfo>
|
||||
<VersionInfo Name="IncludeVerInfo">True</VersionInfo>
|
||||
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
||||
<VersionInfo Name="MajorVer">1</VersionInfo>
|
||||
<VersionInfo Name="MinorVer">0</VersionInfo>
|
||||
<VersionInfo Name="Release">0</VersionInfo>
|
||||
<VersionInfo Name="Build">0</VersionInfo>
|
||||
<VersionInfo Name="Debug">False</VersionInfo>
|
||||
<VersionInfo Name="PreRelease">False</VersionInfo>
|
||||
<VersionInfo Name="Special">False</VersionInfo>
|
||||
<VersionInfo Name="Private">False</VersionInfo>
|
||||
<VersionInfo Name="DLL">False</VersionInfo>
|
||||
<VersionInfo Name="Locale">2052</VersionInfo>
|
||||
<VersionInfo Name="CodePage">936</VersionInfo>
|
||||
</VersionInfo>
|
||||
<VersionInfoKeys>
|
||||
<VersionInfoKeys Name="CompanyName"/>
|
||||
<VersionInfoKeys Name="FileDescription"/>
|
||||
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="InternalName"/>
|
||||
<VersionInfoKeys Name="LegalCopyright"/>
|
||||
<VersionInfoKeys Name="LegalTrademarks"/>
|
||||
<VersionInfoKeys Name="OriginalFilename"/>
|
||||
<VersionInfoKeys Name="ProductName"/>
|
||||
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="Comments"/>
|
||||
<VersionInfoKeys Name="CFBundleName"/>
|
||||
<VersionInfoKeys Name="CFBundleDisplayName"/>
|
||||
<VersionInfoKeys Name="UIDeviceFamily"/>
|
||||
<VersionInfoKeys Name="CFBundleIdentifier"/>
|
||||
<VersionInfoKeys Name="CFBundleVersion"/>
|
||||
<VersionInfoKeys Name="CFBundlePackageType"/>
|
||||
<VersionInfoKeys Name="CFBundleSignature"/>
|
||||
<VersionInfoKeys Name="CFBundleAllowMixedLocalizations"/>
|
||||
<VersionInfoKeys Name="UISupportedInterfaceOrientations"/>
|
||||
<VersionInfoKeys Name="CFBundleExecutable"/>
|
||||
<VersionInfoKeys Name="CFBundleResourceSpecification"/>
|
||||
<VersionInfoKeys Name="LSRequiresIPhoneOS"/>
|
||||
<VersionInfoKeys Name="CFBundleInfoDictionaryVersion"/>
|
||||
<VersionInfoKeys Name="CFBundleDevelopmentRegion"/>
|
||||
</VersionInfoKeys>
|
||||
<Excluded_Packages>
|
||||
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k290.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
|
||||
<Excluded_Packages Name="$(BDSBIN)\dclofficexp290.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
|
||||
</Excluded_Packages>
|
||||
</Delphi.Personality>
|
||||
<Platforms>
|
||||
<Platform value="Win32">True</Platform>
|
||||
<Platform value="Win64">True</Platform>
|
||||
<Platform value="Win64x">False</Platform>
|
||||
</Platforms>
|
||||
</BorlandProject>
|
||||
<ProjectFileVersion>12</ProjectFileVersion>
|
||||
</ProjectExtensions>
|
||||
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
|
||||
<Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
|
||||
</Project>
|
||||
Binary file not shown.
@@ -0,0 +1,39 @@
|
||||
package Spring.Data.Designtime;
|
||||
|
||||
{$R *.res}
|
||||
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
|
||||
{$ALIGN 8}
|
||||
{$ASSERTIONS ON}
|
||||
{$BOOLEVAL OFF}
|
||||
{$DEBUGINFO OFF}
|
||||
{$EXTENDEDSYNTAX ON}
|
||||
{$IMPORTEDDATA ON}
|
||||
{$IOCHECKS ON}
|
||||
{$LOCALSYMBOLS ON}
|
||||
{$LONGSTRINGS ON}
|
||||
{$OPENSTRINGS ON}
|
||||
{$OPTIMIZATION OFF}
|
||||
{$OVERFLOWCHECKS OFF}
|
||||
{$RANGECHECKS OFF}
|
||||
{$REFERENCEINFO ON}
|
||||
{$SAFEDIVIDE OFF}
|
||||
{$STACKFRAMES ON}
|
||||
{$TYPEDADDRESS OFF}
|
||||
{$VARSTRINGCHECKS ON}
|
||||
{$WRITEABLECONST ON}
|
||||
{$MINENUMSIZE 1}
|
||||
{$IMAGEBASE $400000}
|
||||
{$DEFINE DEBUG}
|
||||
{$ENDIF IMPLICITBUILDING}
|
||||
{$DESCRIPTION 'Spring4D Data designtime package'}
|
||||
{$LIBSUFFIX '.290'}
|
||||
{$DESIGNONLY}
|
||||
{$IMPLICITBUILD OFF}
|
||||
|
||||
requires
|
||||
Spring.Data;
|
||||
|
||||
contains
|
||||
Spring.Data.Registration in '..\..\src.spring4d\Source\Data\ObjectDataSet\Spring.Data.Registration.pas';
|
||||
|
||||
end.
|
||||
@@ -0,0 +1,147 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectGuid>{74111A14-7F4C-484F-934C-5ED889C0D028}</ProjectGuid>
|
||||
<MainSource>Spring.Data.Designtime.dpk</MainSource>
|
||||
<ProjectVersion>20.3</ProjectVersion>
|
||||
<Base>True</Base>
|
||||
<Config Condition="'$(Config)'==''">Debug</Config>
|
||||
<AppType>Package</AppType>
|
||||
<FrameworkType>None</FrameworkType>
|
||||
<TargetedPlatforms>1</TargetedPlatforms>
|
||||
<Platform Condition="'$(Platform)'==''">Win32</Platform>
|
||||
<ProjectName Condition="'$(ProjectName)'==''">Spring.Data.Designtime</ProjectName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
|
||||
<Base_Win32>true</Base_Win32>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="('$(Platform)'=='Win64x' and '$(Base)'=='true') or '$(Base_Win64x)'!=''">
|
||||
<Base_Win64x>true</Base_Win64x>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''">
|
||||
<Cfg_1>true</Cfg_1>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
|
||||
<Cfg_2>true</Cfg_2>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base)'!=''">
|
||||
<DesignOnlyPackage>true</DesignOnlyPackage>
|
||||
<DCC_OutputNeverBuildDcps>true</DCC_OutputNeverBuildDcps>
|
||||
<DllSuffix>.290</DllSuffix>
|
||||
<SanitizedProjectName>Spring_Data_Designtime</SanitizedProjectName>
|
||||
<VerInfo_Locale>1033</VerInfo_Locale>
|
||||
<DCC_Namespace>Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;System;Xml;Data;Datasnap;Web;Soap;Winapi;$(DCC_Namespace)</DCC_Namespace>
|
||||
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=;Comments=</VerInfo_Keys>
|
||||
<DCC_Description>Spring4D Data designtime package</DCC_Description>
|
||||
<GenPackage>true</GenPackage>
|
||||
<DCC_UnitSearchPath>..\..\src.spring4d\Source;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
|
||||
<GenDll>true</GenDll>
|
||||
<DCC_ImageBase>00400000</DCC_ImageBase>
|
||||
<DCC_DcuOutput>..\..\dcu\Delphi12\$(Platform)\$(Config)</DCC_DcuOutput>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base_Win32)'!=''">
|
||||
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
|
||||
<DCC_UsePackage>vcl;vclimg;dbrtl;rtl;Spring.Persistence;Spring.Data;$(DCC_UsePackage)</DCC_UsePackage>
|
||||
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base_Win64x)'!=''">
|
||||
<DCC_Namespace>System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
|
||||
<BT_BuildType>Debug</BT_BuildType>
|
||||
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
|
||||
<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>
|
||||
<BCC_EnableBatchCompilation>true</BCC_EnableBatchCompilation>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Cfg_1)'!=''">
|
||||
<DCC_WriteableConstants>true</DCC_WriteableConstants>
|
||||
<DCC_DebugDCUs>true</DCC_DebugDCUs>
|
||||
<DCC_DebugInfoInExe>true</DCC_DebugInfoInExe>
|
||||
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
|
||||
<DCC_Optimize>false</DCC_Optimize>
|
||||
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Cfg_2)'!=''">
|
||||
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
|
||||
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
|
||||
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
|
||||
<DCC_DebugInformation>0</DCC_DebugInformation>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<DelphiCompile Include="$(MainSource)">
|
||||
<MainSource>MainSource</MainSource>
|
||||
</DelphiCompile>
|
||||
<DCCReference Include="Spring.Data.dcp"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Data\ObjectDataSet\Spring.Data.Registration.pas"/>
|
||||
<BuildConfiguration Include="Base">
|
||||
<Key>Base</Key>
|
||||
</BuildConfiguration>
|
||||
<BuildConfiguration Include="Debug">
|
||||
<Key>Cfg_1</Key>
|
||||
<CfgParent>Base</CfgParent>
|
||||
</BuildConfiguration>
|
||||
<BuildConfiguration Include="Release">
|
||||
<Key>Cfg_2</Key>
|
||||
<CfgParent>Base</CfgParent>
|
||||
</BuildConfiguration>
|
||||
</ItemGroup>
|
||||
<Import Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')" Project="$(BDS)\Bin\CodeGear.Delphi.Targets"/>
|
||||
<Import Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')" Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj"/>
|
||||
<ProjectExtensions>
|
||||
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
|
||||
<Borland.ProjectType>Package</Borland.ProjectType>
|
||||
<BorlandProject>
|
||||
<Delphi.Personality>
|
||||
<Source>
|
||||
<Source Name="MainSource">Spring.Data.Designtime.dpk</Source>
|
||||
</Source>
|
||||
<VersionInfo>
|
||||
<VersionInfo Name="IncludeVerInfo">True</VersionInfo>
|
||||
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
||||
<VersionInfo Name="MajorVer">1</VersionInfo>
|
||||
<VersionInfo Name="MinorVer">0</VersionInfo>
|
||||
<VersionInfo Name="Release">0</VersionInfo>
|
||||
<VersionInfo Name="Build">0</VersionInfo>
|
||||
<VersionInfo Name="Debug">False</VersionInfo>
|
||||
<VersionInfo Name="PreRelease">False</VersionInfo>
|
||||
<VersionInfo Name="Special">False</VersionInfo>
|
||||
<VersionInfo Name="Private">False</VersionInfo>
|
||||
<VersionInfo Name="DLL">False</VersionInfo>
|
||||
<VersionInfo Name="Locale">1063</VersionInfo>
|
||||
<VersionInfo Name="CodePage">1257</VersionInfo>
|
||||
</VersionInfo>
|
||||
<VersionInfoKeys>
|
||||
<VersionInfoKeys Name="CompanyName"/>
|
||||
<VersionInfoKeys Name="FileDescription"/>
|
||||
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="InternalName"/>
|
||||
<VersionInfoKeys Name="LegalCopyright"/>
|
||||
<VersionInfoKeys Name="LegalTrademarks"/>
|
||||
<VersionInfoKeys Name="OriginalFilename"/>
|
||||
<VersionInfoKeys Name="ProductName"/>
|
||||
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="Comments"/>
|
||||
</VersionInfoKeys>
|
||||
<Excluded_Packages>
|
||||
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k290.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
|
||||
<Excluded_Packages Name="$(BDSBIN)\dclofficexp290.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
|
||||
</Excluded_Packages>
|
||||
</Delphi.Personality>
|
||||
<Platforms>
|
||||
<Platform value="Win32">True</Platform>
|
||||
<Platform value="Win64">False</Platform>
|
||||
<Platform value="Win64x">False</Platform>
|
||||
</Platforms>
|
||||
</BorlandProject>
|
||||
<ProjectFileVersion>12</ProjectFileVersion>
|
||||
</ProjectExtensions>
|
||||
<Import Project="$(MSBuildProjectName).deployproj" Condition="Exists('$(MSBuildProjectName).deployproj')"/>
|
||||
</Project>
|
||||
Binary file not shown.
@@ -0,0 +1,46 @@
|
||||
package Spring.Data;
|
||||
|
||||
{$R *.res}
|
||||
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
|
||||
{$ALIGN 8}
|
||||
{$ASSERTIONS ON}
|
||||
{$BOOLEVAL OFF}
|
||||
{$DEBUGINFO OFF}
|
||||
{$EXTENDEDSYNTAX ON}
|
||||
{$IMPORTEDDATA ON}
|
||||
{$IOCHECKS ON}
|
||||
{$LOCALSYMBOLS ON}
|
||||
{$LONGSTRINGS ON}
|
||||
{$OPENSTRINGS ON}
|
||||
{$OPTIMIZATION OFF}
|
||||
{$OVERFLOWCHECKS OFF}
|
||||
{$RANGECHECKS OFF}
|
||||
{$REFERENCEINFO ON}
|
||||
{$SAFEDIVIDE OFF}
|
||||
{$STACKFRAMES ON}
|
||||
{$TYPEDADDRESS OFF}
|
||||
{$VARSTRINGCHECKS ON}
|
||||
{$WRITEABLECONST OFF}
|
||||
{$MINENUMSIZE 1}
|
||||
{$IMAGEBASE $400000}
|
||||
{$DEFINE DEBUG}
|
||||
{$ENDIF IMPLICITBUILDING}
|
||||
{$DESCRIPTION 'Spring4D Data package'}
|
||||
{$LIBSUFFIX '.290'}
|
||||
{$RUNONLY}
|
||||
{$IMPLICITBUILD OFF}
|
||||
|
||||
requires
|
||||
dbrtl,
|
||||
Spring.Base;
|
||||
|
||||
contains
|
||||
Spring.Data.ActiveX in '..\..\src.spring4d\Source\Data\ObjectDataSet\Spring.Data.ActiveX.pas',
|
||||
Spring.Data.ExpressionParser in '..\..\src.spring4d\Source\Data\ObjectDataSet\Spring.Data.ExpressionParser.pas',
|
||||
Spring.Data.ExpressionParser.Functions in '..\..\src.spring4d\Source\Data\ObjectDataSet\Spring.Data.ExpressionParser.Functions.pas',
|
||||
Spring.Data.IndexList in '..\..\src.spring4d\Source\Data\ObjectDataSet\Spring.Data.IndexList.pas',
|
||||
Spring.Data.ObjectDataSet in '..\..\src.spring4d\Source\Data\ObjectDataSet\Spring.Data.ObjectDataSet.pas',
|
||||
Spring.Data.ValueConverters in '..\..\src.spring4d\Source\Data\ObjectDataSet\Spring.Data.ValueConverters.pas',
|
||||
Spring.Data.VirtualDataSet in '..\..\src.spring4d\Source\Data\ObjectDataSet\Spring.Data.VirtualDataSet.pas';
|
||||
|
||||
end.
|
||||
@@ -0,0 +1,161 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectGuid>{CE604316-E7DF-4F7D-8C54-B06FAAB0F76B}</ProjectGuid>
|
||||
<MainSource>Spring.Data.dpk</MainSource>
|
||||
<ProjectVersion>20.3</ProjectVersion>
|
||||
<FrameworkType>None</FrameworkType>
|
||||
<Base>True</Base>
|
||||
<Config Condition="'$(Config)'==''">Release</Config>
|
||||
<Platform Condition="'$(Platform)'==''">Win32</Platform>
|
||||
<TargetedPlatforms>3</TargetedPlatforms>
|
||||
<AppType>Package</AppType>
|
||||
<ProjectName Condition="'$(ProjectName)'==''">Spring.Data</ProjectName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
|
||||
<Base_Win32>true</Base_Win32>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
|
||||
<Base_Win64>true</Base_Win64>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="('$(Platform)'=='Win64x' and '$(Base)'=='true') or '$(Base_Win64x)'!=''">
|
||||
<Base_Win64x>true</Base_Win64x>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''">
|
||||
<Cfg_1>true</Cfg_1>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
|
||||
<Cfg_2>true</Cfg_2>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base)'!=''">
|
||||
<SanitizedProjectName>Spring_Data</SanitizedProjectName>
|
||||
<VerInfo_Locale>1031</VerInfo_Locale>
|
||||
<DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace)</DCC_Namespace>
|
||||
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
|
||||
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
|
||||
<RuntimeOnlyPackage>true</RuntimeOnlyPackage>
|
||||
<GenPackage>true</GenPackage>
|
||||
<DllSuffix>.290</DllSuffix>
|
||||
<DCC_UnitSearchPath>..\..\src.spring4d\Source;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
|
||||
<GenDll>true</GenDll>
|
||||
<DCC_Description>Spring4D Data package</DCC_Description>
|
||||
<DCC_OutputNeverBuildDcps>true</DCC_OutputNeverBuildDcps>
|
||||
<DCC_DcuOutput>..\..\dcu\Delphi12\$(Platform)\$(Config)</DCC_DcuOutput>
|
||||
<DCC_ImageBase>00400000</DCC_ImageBase>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base_Win32)'!=''">
|
||||
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
|
||||
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
|
||||
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base_Win64)'!=''">
|
||||
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
|
||||
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
|
||||
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base_Win64x)'!=''">
|
||||
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
|
||||
<BT_BuildType>Debug</BT_BuildType>
|
||||
<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>
|
||||
<VerInfo_Locale>1033</VerInfo_Locale>
|
||||
<BCC_EnableBatchCompilation>true</BCC_EnableBatchCompilation>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Cfg_1)'!=''">
|
||||
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
|
||||
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
|
||||
<DCC_Optimize>false</DCC_Optimize>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Cfg_2)'!=''">
|
||||
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
|
||||
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
|
||||
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
|
||||
<DCC_DebugInformation>0</DCC_DebugInformation>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<DelphiCompile Include="$(MainSource)">
|
||||
<MainSource>MainSource</MainSource>
|
||||
</DelphiCompile>
|
||||
<DCCReference Include="dbrtl.dcp"/>
|
||||
<DCCReference Include="Spring.Base.dcp"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Data\ObjectDataSet\Spring.Data.ActiveX.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Data\ObjectDataSet\Spring.Data.ExpressionParser.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Data\ObjectDataSet\Spring.Data.ExpressionParser.Functions.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Data\ObjectDataSet\Spring.Data.IndexList.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Data\ObjectDataSet\Spring.Data.ObjectDataSet.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Data\ObjectDataSet\Spring.Data.ValueConverters.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Data\ObjectDataSet\Spring.Data.VirtualDataSet.pas"/>
|
||||
<BuildConfiguration Include="Base">
|
||||
<Key>Base</Key>
|
||||
</BuildConfiguration>
|
||||
<BuildConfiguration Include="Debug">
|
||||
<Key>Cfg_1</Key>
|
||||
<CfgParent>Base</CfgParent>
|
||||
</BuildConfiguration>
|
||||
<BuildConfiguration Include="Release">
|
||||
<Key>Cfg_2</Key>
|
||||
<CfgParent>Base</CfgParent>
|
||||
</BuildConfiguration>
|
||||
</ItemGroup>
|
||||
<Import Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')" Project="$(BDS)\Bin\CodeGear.Delphi.Targets"/>
|
||||
<Import Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')" Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj"/>
|
||||
<ProjectExtensions>
|
||||
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
|
||||
<Borland.ProjectType>Package</Borland.ProjectType>
|
||||
<BorlandProject>
|
||||
<Delphi.Personality>
|
||||
<VersionInfo>
|
||||
<VersionInfo Name="IncludeVerInfo">True</VersionInfo>
|
||||
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
||||
<VersionInfo Name="MajorVer">1</VersionInfo>
|
||||
<VersionInfo Name="MinorVer">0</VersionInfo>
|
||||
<VersionInfo Name="Release">0</VersionInfo>
|
||||
<VersionInfo Name="Build">0</VersionInfo>
|
||||
<VersionInfo Name="Debug">False</VersionInfo>
|
||||
<VersionInfo Name="PreRelease">False</VersionInfo>
|
||||
<VersionInfo Name="Special">False</VersionInfo>
|
||||
<VersionInfo Name="Private">False</VersionInfo>
|
||||
<VersionInfo Name="DLL">False</VersionInfo>
|
||||
<VersionInfo Name="Locale">1031</VersionInfo>
|
||||
<VersionInfo Name="CodePage">1252</VersionInfo>
|
||||
</VersionInfo>
|
||||
<VersionInfoKeys>
|
||||
<VersionInfoKeys Name="CompanyName"/>
|
||||
<VersionInfoKeys Name="FileDescription"/>
|
||||
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="InternalName"/>
|
||||
<VersionInfoKeys Name="LegalCopyright"/>
|
||||
<VersionInfoKeys Name="LegalTrademarks"/>
|
||||
<VersionInfoKeys Name="OriginalFilename"/>
|
||||
<VersionInfoKeys Name="ProductName"/>
|
||||
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="Comments"/>
|
||||
</VersionInfoKeys>
|
||||
<Source>
|
||||
<Source Name="MainSource">Spring.Data.dpk</Source>
|
||||
</Source>
|
||||
<Excluded_Packages>
|
||||
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k290.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
|
||||
<Excluded_Packages Name="$(BDSBIN)\dclofficexp290.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
|
||||
</Excluded_Packages>
|
||||
</Delphi.Personality>
|
||||
<Platforms>
|
||||
<Platform value="Win32">True</Platform>
|
||||
<Platform value="Win64">True</Platform>
|
||||
<Platform value="Win64x">False</Platform>
|
||||
</Platforms>
|
||||
</BorlandProject>
|
||||
<ProjectFileVersion>12</ProjectFileVersion>
|
||||
</ProjectExtensions>
|
||||
</Project>
|
||||
Binary file not shown.
@@ -0,0 +1,49 @@
|
||||
package Spring.Extensions;
|
||||
|
||||
{$R *.res}
|
||||
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
|
||||
{$ALIGN 8}
|
||||
{$ASSERTIONS ON}
|
||||
{$BOOLEVAL OFF}
|
||||
{$DEBUGINFO OFF}
|
||||
{$EXTENDEDSYNTAX ON}
|
||||
{$IMPORTEDDATA ON}
|
||||
{$IOCHECKS ON}
|
||||
{$LOCALSYMBOLS ON}
|
||||
{$LONGSTRINGS ON}
|
||||
{$OPENSTRINGS ON}
|
||||
{$OPTIMIZATION OFF}
|
||||
{$OVERFLOWCHECKS OFF}
|
||||
{$RANGECHECKS OFF}
|
||||
{$REFERENCEINFO ON}
|
||||
{$SAFEDIVIDE OFF}
|
||||
{$STACKFRAMES ON}
|
||||
{$TYPEDADDRESS OFF}
|
||||
{$VARSTRINGCHECKS ON}
|
||||
{$WRITEABLECONST OFF}
|
||||
{$MINENUMSIZE 1}
|
||||
{$IMAGEBASE $400000}
|
||||
{$DEFINE DEBUG}
|
||||
{$ENDIF IMPLICITBUILDING}
|
||||
{$DESCRIPTION 'Spring4D Extensions package'}
|
||||
{$LIBSUFFIX '.290'}
|
||||
{$RUNONLY}
|
||||
{$IMPLICITBUILD OFF}
|
||||
|
||||
requires
|
||||
rtl,
|
||||
Spring.Base;
|
||||
|
||||
contains
|
||||
Spring.Cryptography.Base in '..\..\src.spring4d\Source\Extensions\Cryptography\Spring.Cryptography.Base.pas',
|
||||
Spring.Cryptography.CRC in '..\..\src.spring4d\Source\Extensions\Cryptography\Spring.Cryptography.CRC.pas',
|
||||
Spring.Cryptography.DES in '..\..\src.spring4d\Source\Extensions\Cryptography\Spring.Cryptography.DES.pas',
|
||||
Spring.Cryptography.MD5 in '..\..\src.spring4d\Source\Extensions\Cryptography\Spring.Cryptography.MD5.pas',
|
||||
Spring.Cryptography in '..\..\src.spring4d\Source\Extensions\Cryptography\Spring.Cryptography.pas',
|
||||
Spring.Cryptography.SHA in '..\..\src.spring4d\Source\Extensions\Cryptography\Spring.Cryptography.SHA.pas',
|
||||
Spring.Cryptography.Utils in '..\..\src.spring4d\Source\Extensions\Cryptography\Spring.Cryptography.Utils.pas',
|
||||
Spring.Utils.IO in '..\..\src.spring4d\Source\Extensions\Utils\Spring.Utils.IO.pas',
|
||||
Spring.Utils.WinApi in '..\..\src.spring4d\Source\Extensions\Utils\Spring.Utils.WinApi.pas',
|
||||
Spring.Utils in '..\..\src.spring4d\Source\Extensions\Utils\Spring.Utils.pas';
|
||||
|
||||
end.
|
||||
@@ -0,0 +1,179 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectGuid>{25F0D1D4-23C7-4350-A17F-67AE14842F76}</ProjectGuid>
|
||||
<MainSource>Spring.Extensions.dpk</MainSource>
|
||||
<Base>True</Base>
|
||||
<Config Condition="'$(Config)'==''">Release</Config>
|
||||
<TargetedPlatforms>3</TargetedPlatforms>
|
||||
<AppType>Package</AppType>
|
||||
<FrameworkType>None</FrameworkType>
|
||||
<ProjectVersion>20.3</ProjectVersion>
|
||||
<Platform Condition="'$(Platform)'==''">Win32</Platform>
|
||||
<ProjectName Condition="'$(ProjectName)'==''">Spring.Extensions</ProjectName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
|
||||
<Base_Win32>true</Base_Win32>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
|
||||
<Base_Win64>true</Base_Win64>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="('$(Platform)'=='Win64x' and '$(Base)'=='true') or '$(Base_Win64x)'!=''">
|
||||
<Base_Win64x>true</Base_Win64x>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''">
|
||||
<Cfg_1>true</Cfg_1>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''">
|
||||
<Cfg_2>true</Cfg_2>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base)'!=''">
|
||||
<DllSuffix>.290</DllSuffix>
|
||||
<SanitizedProjectName>Spring_Extensions</SanitizedProjectName>
|
||||
<GenPackage>true</GenPackage>
|
||||
<DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;Winapi;System.Win;$(DCC_Namespace)</DCC_Namespace>
|
||||
<VerInfo_Locale>2052</VerInfo_Locale>
|
||||
<DCC_ImageBase>00400000</DCC_ImageBase>
|
||||
<DCC_S>false</DCC_S>
|
||||
<DCC_OutputNeverBuildDcps>true</DCC_OutputNeverBuildDcps>
|
||||
<DCC_F>false</DCC_F>
|
||||
<DCC_DcuOutput>..\..\dcu\Delphi12\$(Platform)\$(Config)</DCC_DcuOutput>
|
||||
<DCC_K>false</DCC_K>
|
||||
<RuntimeOnlyPackage>true</RuntimeOnlyPackage>
|
||||
<DCC_UnitSearchPath>..\..\src.spring4d\Source;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
|
||||
<DCC_N>false</DCC_N>
|
||||
<DCC_E>false</DCC_E>
|
||||
<GenDll>true</GenDll>
|
||||
<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>
|
||||
<DCC_Description>Spring4D Extensions package</DCC_Description>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base_Win32)'!=''">
|
||||
<DCC_Namespace>Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base_Win64)'!=''">
|
||||
<DCC_Namespace>Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base_Win64x)'!=''">
|
||||
<DCC_Namespace>Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
|
||||
<BT_BuildType>Debug</BT_BuildType>
|
||||
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
|
||||
<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>
|
||||
<VerInfo_Locale>1033</VerInfo_Locale>
|
||||
<BCC_EnableBatchCompilation>true</BCC_EnableBatchCompilation>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Cfg_1)'!=''">
|
||||
<DCC_DebugInformation>0</DCC_DebugInformation>
|
||||
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
|
||||
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
|
||||
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Cfg_2)'!=''">
|
||||
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
|
||||
<DCC_Optimize>false</DCC_Optimize>
|
||||
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<DelphiCompile Include="$(MainSource)">
|
||||
<MainSource>MainSource</MainSource>
|
||||
</DelphiCompile>
|
||||
<DCCReference Include="rtl.dcp"/>
|
||||
<DCCReference Include="Spring.Base.dcp"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Extensions\Cryptography\Spring.Cryptography.Base.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Extensions\Cryptography\Spring.Cryptography.CRC.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Extensions\Cryptography\Spring.Cryptography.DES.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Extensions\Cryptography\Spring.Cryptography.MD5.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Extensions\Cryptography\Spring.Cryptography.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Extensions\Cryptography\Spring.Cryptography.SHA.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Extensions\Cryptography\Spring.Cryptography.Utils.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Extensions\Utils\Spring.Utils.IO.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Extensions\Utils\Spring.Utils.WinApi.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Extensions\Utils\Spring.Utils.pas"/>
|
||||
<BuildConfiguration Include="Base">
|
||||
<Key>Base</Key>
|
||||
</BuildConfiguration>
|
||||
<BuildConfiguration Include="Release">
|
||||
<Key>Cfg_1</Key>
|
||||
<CfgParent>Base</CfgParent>
|
||||
</BuildConfiguration>
|
||||
<BuildConfiguration Include="Debug">
|
||||
<Key>Cfg_2</Key>
|
||||
<CfgParent>Base</CfgParent>
|
||||
</BuildConfiguration>
|
||||
</ItemGroup>
|
||||
<ProjectExtensions>
|
||||
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
|
||||
<Borland.ProjectType>Package</Borland.ProjectType>
|
||||
<BorlandProject>
|
||||
<Delphi.Personality>
|
||||
<Source>
|
||||
<Source Name="MainSource">Spring.Extensions.dpk</Source>
|
||||
</Source>
|
||||
<VersionInfo>
|
||||
<VersionInfo Name="IncludeVerInfo">True</VersionInfo>
|
||||
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
||||
<VersionInfo Name="MajorVer">1</VersionInfo>
|
||||
<VersionInfo Name="MinorVer">0</VersionInfo>
|
||||
<VersionInfo Name="Release">0</VersionInfo>
|
||||
<VersionInfo Name="Build">0</VersionInfo>
|
||||
<VersionInfo Name="Debug">False</VersionInfo>
|
||||
<VersionInfo Name="PreRelease">False</VersionInfo>
|
||||
<VersionInfo Name="Special">False</VersionInfo>
|
||||
<VersionInfo Name="Private">False</VersionInfo>
|
||||
<VersionInfo Name="DLL">False</VersionInfo>
|
||||
<VersionInfo Name="Locale">2052</VersionInfo>
|
||||
<VersionInfo Name="CodePage">936</VersionInfo>
|
||||
</VersionInfo>
|
||||
<VersionInfoKeys>
|
||||
<VersionInfoKeys Name="CompanyName"/>
|
||||
<VersionInfoKeys Name="FileDescription"/>
|
||||
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="InternalName"/>
|
||||
<VersionInfoKeys Name="LegalCopyright"/>
|
||||
<VersionInfoKeys Name="LegalTrademarks"/>
|
||||
<VersionInfoKeys Name="OriginalFilename"/>
|
||||
<VersionInfoKeys Name="ProductName"/>
|
||||
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="Comments"/>
|
||||
<VersionInfoKeys Name="CFBundleName"/>
|
||||
<VersionInfoKeys Name="CFBundleDisplayName"/>
|
||||
<VersionInfoKeys Name="UIDeviceFamily"/>
|
||||
<VersionInfoKeys Name="CFBundleIdentifier"/>
|
||||
<VersionInfoKeys Name="CFBundleVersion"/>
|
||||
<VersionInfoKeys Name="CFBundlePackageType"/>
|
||||
<VersionInfoKeys Name="CFBundleSignature"/>
|
||||
<VersionInfoKeys Name="CFBundleAllowMixedLocalizations"/>
|
||||
<VersionInfoKeys Name="UISupportedInterfaceOrientations"/>
|
||||
<VersionInfoKeys Name="CFBundleExecutable"/>
|
||||
<VersionInfoKeys Name="CFBundleResourceSpecification"/>
|
||||
<VersionInfoKeys Name="LSRequiresIPhoneOS"/>
|
||||
<VersionInfoKeys Name="CFBundleInfoDictionaryVersion"/>
|
||||
<VersionInfoKeys Name="CFBundleDevelopmentRegion"/>
|
||||
</VersionInfoKeys>
|
||||
<Excluded_Packages>
|
||||
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k290.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
|
||||
<Excluded_Packages Name="$(BDSBIN)\dclofficexp290.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
|
||||
</Excluded_Packages>
|
||||
</Delphi.Personality>
|
||||
<Platforms>
|
||||
<Platform value="Win32">True</Platform>
|
||||
<Platform value="Win64">True</Platform>
|
||||
<Platform value="Win64x">False</Platform>
|
||||
</Platforms>
|
||||
</BorlandProject>
|
||||
<ProjectFileVersion>12</ProjectFileVersion>
|
||||
</ProjectExtensions>
|
||||
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
|
||||
<Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
|
||||
</Project>
|
||||
Binary file not shown.
@@ -0,0 +1,101 @@
|
||||
package Spring.Persistence;
|
||||
|
||||
{$R *.res}
|
||||
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
|
||||
{$ALIGN 8}
|
||||
{$ASSERTIONS ON}
|
||||
{$BOOLEVAL OFF}
|
||||
{$DEBUGINFO OFF}
|
||||
{$EXTENDEDSYNTAX ON}
|
||||
{$IMPORTEDDATA ON}
|
||||
{$IOCHECKS ON}
|
||||
{$LOCALSYMBOLS ON}
|
||||
{$LONGSTRINGS ON}
|
||||
{$OPENSTRINGS ON}
|
||||
{$OPTIMIZATION OFF}
|
||||
{$OVERFLOWCHECKS OFF}
|
||||
{$RANGECHECKS OFF}
|
||||
{$REFERENCEINFO ON}
|
||||
{$SAFEDIVIDE OFF}
|
||||
{$STACKFRAMES ON}
|
||||
{$TYPEDADDRESS OFF}
|
||||
{$VARSTRINGCHECKS ON}
|
||||
{$WRITEABLECONST OFF}
|
||||
{$MINENUMSIZE 1}
|
||||
{$IMAGEBASE $400000}
|
||||
{$DEFINE DEBUG}
|
||||
{$ENDIF IMPLICITBUILDING}
|
||||
{$DESCRIPTION 'Spring4D Persistence package'}
|
||||
{$LIBSUFFIX '.290'}
|
||||
{$RUNONLY}
|
||||
{$IMPLICITBUILD OFF}
|
||||
|
||||
requires
|
||||
dbrtl,
|
||||
vcl,
|
||||
vclimg,
|
||||
Spring.Base;
|
||||
|
||||
contains
|
||||
Spring.Persistence.Adapters.FieldCache in '..\..\src.spring4d\Source\Persistence\Adapters\Spring.Persistence.Adapters.FieldCache.pas',
|
||||
Spring.Persistence.Core.AbstractSession in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.AbstractSession.pas',
|
||||
Spring.Persistence.Core.Base in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.Base.pas',
|
||||
Spring.Persistence.Core.ConnectionFactory in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.ConnectionFactory.pas',
|
||||
Spring.Persistence.Core.DatabaseManager in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.DatabaseManager.pas',
|
||||
Spring.Persistence.Core.EmbeddedEntity in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.EmbeddedEntity.pas',
|
||||
Spring.Persistence.Core.EntityCache in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.EntityCache.pas',
|
||||
Spring.Persistence.Core.EntityMap in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.EntityMap.pas',
|
||||
Spring.Persistence.Core.EntityWrapper in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.EntityWrapper.pas',
|
||||
Spring.Persistence.Core.Exceptions in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.Exceptions.pas',
|
||||
Spring.Persistence.Core.Graphics in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.Graphics.pas',
|
||||
Spring.Persistence.Core.Interfaces in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.Interfaces.pas',
|
||||
Spring.Persistence.Core.ListSession in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.ListSession.pas',
|
||||
Spring.Persistence.Core.Repository.Proxy in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.Repository.Proxy.pas',
|
||||
Spring.Persistence.Core.Repository.Simple in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.Repository.Simple.pas',
|
||||
Spring.Persistence.Core.ResourceStrings in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.ResourceStrings.pas',
|
||||
Spring.Persistence.Core.Session in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.Session.pas',
|
||||
Spring.Persistence.Core.ValueConverters in '..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.ValueConverters.pas',
|
||||
Spring.Persistence.Criteria in '..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.pas',
|
||||
Spring.Persistence.Criteria.Criterion.Abstract in '..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.Abstract.pas',
|
||||
Spring.Persistence.Criteria.Criterion.BetweenExpression in '..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.BetweenExpression.pas',
|
||||
Spring.Persistence.Criteria.Criterion.Conjunction in '..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.Conjunction.pas',
|
||||
Spring.Persistence.Criteria.Criterion.Disjunction in '..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.Disjunction.pas',
|
||||
Spring.Persistence.Criteria.Criterion.InExpression in '..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.InExpression.pas',
|
||||
Spring.Persistence.Criteria.Criterion.Junction in '..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.Junction.pas',
|
||||
Spring.Persistence.Criteria.Criterion.LikeExpression in '..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.LikeExpression.pas',
|
||||
Spring.Persistence.Criteria.Criterion.LogicalExpression in '..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.LogicalExpression.pas',
|
||||
Spring.Persistence.Criteria.Criterion.NullExpression in '..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.NullExpression.pas',
|
||||
Spring.Persistence.Criteria.Criterion.PropertyExpression in '..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.PropertyExpression.pas',
|
||||
Spring.Persistence.Criteria.Criterion.SimpleExpression in '..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.SimpleExpression.pas',
|
||||
Spring.Persistence.Criteria.Interfaces in '..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Interfaces.pas',
|
||||
Spring.Persistence.Criteria.OrderBy in '..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.OrderBy.pas',
|
||||
Spring.Persistence.Criteria.Properties in '..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Properties.pas',
|
||||
Spring.Persistence.Criteria.Restrictions in '..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Restrictions.pas',
|
||||
Spring.Persistence.Mapping.Attributes in '..\..\src.spring4d\Source\Persistence\Mapping\Spring.Persistence.Mapping.Attributes.pas',
|
||||
Spring.Persistence.SQL.Commands in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.pas',
|
||||
Spring.Persistence.SQL.Commands.Abstract in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.Abstract.pas',
|
||||
Spring.Persistence.SQL.Commands.CreateForeignKey in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.CreateForeignKey.pas',
|
||||
Spring.Persistence.SQL.Commands.CreateSequence in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.CreateSequence.pas',
|
||||
Spring.Persistence.SQL.Commands.CreateTable in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.CreateTable.pas',
|
||||
Spring.Persistence.SQL.Commands.Delete in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.Delete.pas',
|
||||
Spring.Persistence.SQL.Commands.Insert in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.Insert.pas',
|
||||
Spring.Persistence.SQL.Commands.Page in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.Page.pas',
|
||||
Spring.Persistence.SQL.Commands.Select in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.Select.pas',
|
||||
Spring.Persistence.SQL.Commands.Update in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.Update.pas',
|
||||
Spring.Persistence.SQL.Generators.Abstract in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.Abstract.pas',
|
||||
Spring.Persistence.SQL.Generators.Ansi in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.Ansi.pas',
|
||||
Spring.Persistence.SQL.Generators.ASA in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.ASA.pas',
|
||||
Spring.Persistence.SQL.Generators.Firebird in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.Firebird.pas',
|
||||
Spring.Persistence.SQL.Generators.MSSQL in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.MSSQL.pas',
|
||||
Spring.Persistence.SQL.Generators.MySQL in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.MySQL.pas',
|
||||
Spring.Persistence.SQL.Generators.NoSQL in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.NoSQL.pas',
|
||||
Spring.Persistence.SQL.Generators.Oracle in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.Oracle.pas',
|
||||
Spring.Persistence.SQL.Generators.PostgreSQL in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.PostgreSQL.pas',
|
||||
Spring.Persistence.SQL.Generators.SQLite3 in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.SQLite3.pas',
|
||||
Spring.Persistence.SQL.Generators.Register in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.Register.pas',
|
||||
Spring.Persistence.SQL.Interfaces in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Interfaces.pas',
|
||||
Spring.Persistence.SQL.Params in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Params.pas',
|
||||
Spring.Persistence.SQL.Register in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Register.pas',
|
||||
Spring.Persistence.SQL.Types in '..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Types.pas';
|
||||
|
||||
end.
|
||||
@@ -0,0 +1,202 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectGuid>{EF4943C0-6445-4C2A-9321-93EC9C8C0BC7}</ProjectGuid>
|
||||
<MainSource>Spring.Persistence.dpk</MainSource>
|
||||
<Base>True</Base>
|
||||
<Config Condition="'$(Config)'==''">Release</Config>
|
||||
<TargetedPlatforms>3</TargetedPlatforms>
|
||||
<AppType>Package</AppType>
|
||||
<FrameworkType>None</FrameworkType>
|
||||
<ProjectVersion>20.3</ProjectVersion>
|
||||
<Platform Condition="'$(Platform)'==''">Win32</Platform>
|
||||
<ProjectName Condition="'$(ProjectName)'==''">Spring.Persistence</ProjectName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="('$(Platform)'=='Win64x' and '$(Base)'=='true') or '$(Base_Win64x)'!=''">
|
||||
<Base_Win64x>true</Base_Win64x>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''">
|
||||
<Cfg_1>true</Cfg_1>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''">
|
||||
<Cfg_2>true</Cfg_2>
|
||||
<CfgParent>Base</CfgParent>
|
||||
<Base>true</Base>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base)'!=''">
|
||||
<DCC_UnitSearchPath>..\..\src.spring4d\Source;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
|
||||
<DCC_OutputNeverBuildDcps>true</DCC_OutputNeverBuildDcps>
|
||||
<RuntimeOnlyPackage>true</RuntimeOnlyPackage>
|
||||
<DCC_K>false</DCC_K>
|
||||
<DCC_ImageBase>00400000</DCC_ImageBase>
|
||||
<GenPackage>true</GenPackage>
|
||||
<DCC_Description>Spring4D Persistence package</DCC_Description>
|
||||
<DCC_S>false</DCC_S>
|
||||
<VerInfo_Locale>1046</VerInfo_Locale>
|
||||
<DCC_F>false</DCC_F>
|
||||
<DCC_Namespace>Winapi;Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;System;Xml;Data;Datasnap;Web;Soap;DDC;$(DCC_Namespace)</DCC_Namespace>
|
||||
<SanitizedProjectName>Spring_Persistence</SanitizedProjectName>
|
||||
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName=</VerInfo_Keys>
|
||||
<DCC_E>false</DCC_E>
|
||||
<DllSuffix>.290</DllSuffix>
|
||||
<DCC_N>false</DCC_N>
|
||||
<GenDll>true</GenDll>
|
||||
<DCC_DcuOutput>..\..\dcu\Delphi12\$(Platform)\$(Config)</DCC_DcuOutput>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Base_Win64x)'!=''">
|
||||
<DCC_Namespace>System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
|
||||
<BT_BuildType>Debug</BT_BuildType>
|
||||
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
|
||||
<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>
|
||||
<VerInfo_Locale>1033</VerInfo_Locale>
|
||||
<BCC_EnableBatchCompilation>true</BCC_EnableBatchCompilation>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Cfg_1)'!=''">
|
||||
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
|
||||
<DCC_DebugInformation>0</DCC_DebugInformation>
|
||||
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
|
||||
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Cfg_2)'!=''">
|
||||
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
|
||||
<DCC_Optimize>false</DCC_Optimize>
|
||||
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<DelphiCompile Include="$(MainSource)">
|
||||
<MainSource>MainSource</MainSource>
|
||||
</DelphiCompile>
|
||||
<DCCReference Include="dbrtl.dcp"/>
|
||||
<DCCReference Include="vcl.dcp"/>
|
||||
<DCCReference Include="vclimg.dcp"/>
|
||||
<DCCReference Include="Spring.Base.dcp"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Adapters\Spring.Persistence.Adapters.FieldCache.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.AbstractSession.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.Base.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.ConnectionFactory.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.DatabaseManager.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.EmbeddedEntity.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.EntityCache.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.EntityMap.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.EntityWrapper.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.Exceptions.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.Graphics.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.Interfaces.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.ListSession.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.Repository.Proxy.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.Repository.Simple.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.ResourceStrings.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.Session.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Core\Spring.Persistence.Core.ValueConverters.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.Abstract.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.BetweenExpression.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.Conjunction.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.Disjunction.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.InExpression.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.Junction.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.LikeExpression.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.LogicalExpression.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.NullExpression.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.PropertyExpression.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Criterion.SimpleExpression.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Interfaces.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.OrderBy.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Properties.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Criteria\Spring.Persistence.Criteria.Restrictions.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\Mapping\Spring.Persistence.Mapping.Attributes.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.Abstract.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.CreateForeignKey.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.CreateSequence.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.CreateTable.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.Delete.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.Insert.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.Page.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.Select.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Commands.Update.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.Abstract.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.Ansi.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.ASA.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.Firebird.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.MSSQL.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.MySQL.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.NoSQL.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.Oracle.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.PostgreSQL.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.SQLite3.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Generators.Register.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Interfaces.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Params.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Register.pas"/>
|
||||
<DCCReference Include="..\..\src.spring4d\Source\Persistence\SQL\Spring.Persistence.SQL.Types.pas"/>
|
||||
<BuildConfiguration Include="Base">
|
||||
<Key>Base</Key>
|
||||
</BuildConfiguration>
|
||||
<BuildConfiguration Include="Release">
|
||||
<Key>Cfg_1</Key>
|
||||
<CfgParent>Base</CfgParent>
|
||||
</BuildConfiguration>
|
||||
<BuildConfiguration Include="Debug">
|
||||
<Key>Cfg_2</Key>
|
||||
<CfgParent>Base</CfgParent>
|
||||
</BuildConfiguration>
|
||||
</ItemGroup>
|
||||
<Import Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')" Project="$(BDS)\Bin\CodeGear.Delphi.Targets"/>
|
||||
<Import Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')" Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj"/>
|
||||
<ProjectExtensions>
|
||||
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
|
||||
<Borland.ProjectType>Package</Borland.ProjectType>
|
||||
<BorlandProject>
|
||||
<Delphi.Personality>
|
||||
<Source>
|
||||
<Source Name="MainSource">Spring.Persistence.dpk</Source>
|
||||
</Source>
|
||||
<VersionInfo>
|
||||
<VersionInfo Name="IncludeVerInfo">True</VersionInfo>
|
||||
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
||||
<VersionInfo Name="MajorVer">1</VersionInfo>
|
||||
<VersionInfo Name="MinorVer">0</VersionInfo>
|
||||
<VersionInfo Name="Release">0</VersionInfo>
|
||||
<VersionInfo Name="Build">0</VersionInfo>
|
||||
<VersionInfo Name="Debug">False</VersionInfo>
|
||||
<VersionInfo Name="PreRelease">False</VersionInfo>
|
||||
<VersionInfo Name="Special">False</VersionInfo>
|
||||
<VersionInfo Name="Private">False</VersionInfo>
|
||||
<VersionInfo Name="DLL">False</VersionInfo>
|
||||
<VersionInfo Name="Locale">1033</VersionInfo>
|
||||
<VersionInfo Name="CodePage">1252</VersionInfo>
|
||||
</VersionInfo>
|
||||
<VersionInfoKeys>
|
||||
<VersionInfoKeys Name="CompanyName"/>
|
||||
<VersionInfoKeys Name="FileDescription"/>
|
||||
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="InternalName"/>
|
||||
<VersionInfoKeys Name="LegalCopyright"/>
|
||||
<VersionInfoKeys Name="LegalTrademarks"/>
|
||||
<VersionInfoKeys Name="OriginalFilename"/>
|
||||
<VersionInfoKeys Name="ProductName"/>
|
||||
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
|
||||
<VersionInfoKeys Name="Comments"/>
|
||||
</VersionInfoKeys>
|
||||
<Excluded_Packages>
|
||||
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k290.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
|
||||
<Excluded_Packages Name="$(BDSBIN)\dclofficexp290.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
|
||||
</Excluded_Packages>
|
||||
</Delphi.Personality>
|
||||
<Platforms>
|
||||
<Platform value="Win32">True</Platform>
|
||||
<Platform value="Win64">True</Platform>
|
||||
<Platform value="Win64x">False</Platform>
|
||||
</Platforms>
|
||||
</BorlandProject>
|
||||
<ProjectFileVersion>12</ProjectFileVersion>
|
||||
</ProjectExtensions>
|
||||
<Import Project="$(MSBuildProjectName).deployproj" Condition="Exists('$(MSBuildProjectName).deployproj')"/>
|
||||
</Project>
|
||||
Binary file not shown.
@@ -0,0 +1,134 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectGuid>{4C209682-5EE6-4924-AF89-0D517C0D2A6E}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Projects Include="Spring.Base.dproj">
|
||||
<Dependencies/>
|
||||
</Projects>
|
||||
<Projects Include="Spring.Core.dproj">
|
||||
<Dependencies/>
|
||||
</Projects>
|
||||
<Projects Include="Spring.Data.dproj">
|
||||
<Dependencies/>
|
||||
</Projects>
|
||||
<Projects Include="Spring.Data.Designtime.dproj">
|
||||
<Dependencies/>
|
||||
</Projects>
|
||||
<Projects Include="Spring.Persistence.dproj">
|
||||
<Dependencies/>
|
||||
</Projects>
|
||||
<Projects Include="Spring.Extensions.dproj">
|
||||
<Dependencies/>
|
||||
</Projects>
|
||||
</ItemGroup>
|
||||
<ProjectExtensions>
|
||||
<Borland.Personality>Default.Personality.12</Borland.Personality>
|
||||
<Borland.ProjectType/>
|
||||
<BorlandProject>
|
||||
<Default.Personality/>
|
||||
</BorlandProject>
|
||||
</ProjectExtensions>
|
||||
<Target Name="Spring_Base">
|
||||
<MSBuild Projects="Spring.Base.dproj"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Base:Clean">
|
||||
<MSBuild Projects="Spring.Base.dproj" Targets="Clean"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Base:Make">
|
||||
<MSBuild Projects="Spring.Base.dproj" Targets="Make"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Core">
|
||||
<MSBuild Projects="Spring.Core.dproj"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Core:Clean">
|
||||
<MSBuild Projects="Spring.Core.dproj" Targets="Clean"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Core:Make">
|
||||
<MSBuild Projects="Spring.Core.dproj" Targets="Make"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Data">
|
||||
<MSBuild Projects="Spring.Data.dproj"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Data:Clean">
|
||||
<MSBuild Projects="Spring.Data.dproj" Targets="Clean"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Data:Make">
|
||||
<MSBuild Projects="Spring.Data.dproj" Targets="Make"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Data_Designtime">
|
||||
<MSBuild Projects="Spring.Data.Designtime.dproj"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Data_Designtime:Clean">
|
||||
<MSBuild Projects="Spring.Data.Designtime.dproj" Targets="Clean"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Data_Designtime:Make">
|
||||
<MSBuild Projects="Spring.Data.Designtime.dproj" Targets="Make"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Persistence">
|
||||
<MSBuild Projects="Spring.Persistence.dproj"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Persistence:Clean">
|
||||
<MSBuild Projects="Spring.Persistence.dproj" Targets="Clean"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Persistence:Make">
|
||||
<MSBuild Projects="Spring.Persistence.dproj" Targets="Make"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Extensions">
|
||||
<MSBuild Projects="Spring.Extensions.dproj"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Extensions:Clean">
|
||||
<MSBuild Projects="Spring.Extensions.dproj" Targets="Clean"/>
|
||||
</Target>
|
||||
<Target Name="Spring_Extensions:Make">
|
||||
<MSBuild Projects="Spring.Extensions.dproj" Targets="Make"/>
|
||||
</Target>
|
||||
<Target Name="Build">
|
||||
<CallTarget Targets="Spring_Base;Spring_Core;Spring_Data;Spring_Data_Designtime;Spring_Persistence;Spring_Extensions"/>
|
||||
</Target>
|
||||
<Target Name="Clean">
|
||||
<CallTarget Targets="Spring_Base:Clean;Spring_Core:Clean;Spring_Data:Clean;Spring_Data_Designtime:Clean;Spring_Persistence:Clean;Spring_Extensions:Clean"/>
|
||||
</Target>
|
||||
<Target Name="Make">
|
||||
<CallTarget Targets="Spring_Base:Make;Spring_Core:Make;Spring_Data:Make;Spring_Data_Designtime:Make;Spring_Persistence:Make;Spring_Extensions:Make"/>
|
||||
</Target>
|
||||
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
|
||||
<ItemGroup Condition="'$(BuildGroup)'=='All'">
|
||||
<BuildGroupProject Include="Spring.Base.dproj">
|
||||
<ProjectGuid>{8F00FFD6-085B-4B31-B6A2-D3157F252221}</ProjectGuid>
|
||||
<Configurations>Debug;Release</Configurations>
|
||||
<Platforms>Win32;Win64</Platforms>
|
||||
<Enabled>True</Enabled>
|
||||
</BuildGroupProject>
|
||||
<BuildGroupProject Include="Spring.Persistence.dproj">
|
||||
<ProjectGuid>{EF4943C0-6445-4C2A-9321-93EC9C8C0BC7}</ProjectGuid>
|
||||
<Configurations>Debug;Release</Configurations>
|
||||
<Platforms>Win32;Win64</Platforms>
|
||||
<Enabled>True</Enabled>
|
||||
</BuildGroupProject>
|
||||
<BuildGroupProject Include="Spring.Core.dproj">
|
||||
<ProjectGuid>{3F933A25-7C87-419F-B285-EE0B5E3F0B73}</ProjectGuid>
|
||||
<Configurations>Debug;Release</Configurations>
|
||||
<Platforms>Win32;Win64</Platforms>
|
||||
<Enabled>True</Enabled>
|
||||
</BuildGroupProject>
|
||||
<BuildGroupProject Include="Spring.Data.dproj">
|
||||
<ProjectGuid>{CE604316-E7DF-4F7D-8C54-B06FAAB0F76B}</ProjectGuid>
|
||||
<Configurations>Debug;Release</Configurations>
|
||||
<Platforms>Win32;Win64</Platforms>
|
||||
<Enabled>True</Enabled>
|
||||
</BuildGroupProject>
|
||||
<BuildGroupProject Include="Spring.Data.Designtime.dproj">
|
||||
<ProjectGuid>{74111A14-7F4C-484F-934C-5ED889C0D028}</ProjectGuid>
|
||||
<Configurations>Release</Configurations>
|
||||
<Platforms>Win32</Platforms>
|
||||
<Enabled>False</Enabled>
|
||||
</BuildGroupProject>
|
||||
<BuildGroupProject Include="Spring.Extensions.dproj">
|
||||
<ProjectGuid>{25F0D1D4-23C7-4350-A17F-67AE14842F76}</ProjectGuid>
|
||||
<Configurations>Debug;Release</Configurations>
|
||||
<Platforms>Win32;Win64</Platforms>
|
||||
<Enabled>True</Enabled>
|
||||
</BuildGroupProject>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,10 @@
|
||||
The spring4d source must be cloned as a submodule into src.spring4d folder.
|
||||
|
||||
git submodule add https://bitbucket.org/sglienke/spring4d.git src.spring4d
|
||||
|
||||
Cloning a project with submodules needs the following commands:
|
||||
- git submodule init
|
||||
- git submodule update
|
||||
|
||||
|
||||
|
||||
Submodule
+1
Submodule src.spring4d added at 0fe5fa486a
Reference in New Issue
Block a user