Skip to content

Commit

Permalink
Initial import!
Browse files Browse the repository at this point in the history
  • Loading branch information
markpollack committed May 30, 2008
0 parents commit c478a78
Show file tree
Hide file tree
Showing 2,978 changed files with 510,966 additions and 0 deletions.
34 changes: 34 additions & 0 deletions Spring.Net.2002.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Microsoft Visual Studio Solution File, Format Version 7.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Core.Tests.2002", "test\Spring\Spring.Core.Tests\Spring.Core.Tests.2002.csproj", "{44B16BAA-6DF8-447C-9D7F-3AD3D854D904}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Core.2002", "src\Spring\Spring.Core\Spring.Core.2002.csproj", "{710961A3-0DF4-49E4-A26E-F5B9C044AC84}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Aop.2002", "src\Spring\Spring.Aop\Spring.Aop.2002.csproj", "{828F16E3-20A4-4EC4-A8F4-CD95B8ED44C9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Aop.Tests.2002", "test\Spring\Spring.Aop.Tests\Spring.Aop.Tests.2002.csproj", "{F856BCAE-421E-469A-B75F-E41E5BA7F160}"
EndProject
Global
GlobalSection(SolutionConfiguration) = preSolution
ConfigName.0 = Debug-1.0
ConfigName.1 = Release-1.0
EndGlobalSection
GlobalSection(ProjectDependencies) = postSolution
EndGlobalSection
GlobalSection(ProjectConfiguration) = postSolution
{44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Debug-1.0.ActiveCfg = Debug|.NET
{44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Release-1.0.ActiveCfg = Release|.NET
{710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Debug-1.0.ActiveCfg = Debug|.NET
{710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Debug-1.0.Build.0 = Debug|.NET
{710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Release-1.0.ActiveCfg = Release|.NET
{828F16E3-20A4-4EC4-A8F4-CD95B8ED44C9}.Debug-1.0.ActiveCfg = Debug|.NET
{828F16E3-20A4-4EC4-A8F4-CD95B8ED44C9}.Release-1.0.ActiveCfg = Release|.NET
{F856BCAE-421E-469A-B75F-E41E5BA7F160}.Debug-1.0.ActiveCfg = Debug|.NET
{F856BCAE-421E-469A-B75F-E41E5BA7F160}.Release-1.0.ActiveCfg = Release|.NET
EndGlobalSection
GlobalSection(SolutionItems) = postSolution
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
EndGlobalSection
GlobalSection(ExtensibilityAddIns) = postSolution
EndGlobalSection
EndGlobal
226 changes: 226 additions & 0 deletions Spring.Net.2003.sln

Large diffs are not rendered by default.

325 changes: 325 additions & 0 deletions Spring.Net.2005.sln

Large diffs are not rendered by default.

1,301 changes: 1,301 additions & 0 deletions Spring.build

Large diffs are not rendered by default.

434 changes: 434 additions & 0 deletions Spring.include

Large diffs are not rendered by default.

68 changes: 68 additions & 0 deletions build-support/CruiseControl.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<?xml version="1.0"?>

<!-- Bootstrap build file for ccnet -->

<project name="ccnetlaunch" default="go">

<!-- These properties will be set via CCNET as defined in -->
<!-- ccnet.config, but they are set the the same values -->
<!-- stand alone usage -->
<property name="cvs.executable" value="C:\Program Files\TortoiseCVS\cvs.exe"/>
<property name="build.file" value="Spring.build"/>

<!-- Get all the latest code and do the build+test -->
<target name="go" depends="cleansrc,update,build"/>

<target name="daily" depends="cleansrc,update,build-daily"/>


<target name="cleansrc" description="Deletes source code">
<echo message="Deleting src directory" />
<delete dir="./src" failonerror="false" />
<mkdir dir="./src" verbose="true" />

<echo message="Deleting test directory" />
<delete dir="./test" failonerror="false" />
<mkdir dir="./test" verbose="true" />

<echo message="Deleting examples directory" />
<delete dir="./examples" failonerror="false" />
<mkdir dir="./examples" verbose="true" />

<echo message="Deleting sandbox directory" />
<delete dir="./sandbox" failonerror="false" />
<mkdir dir="./sandbox" verbose="true" />

<echo message="Deleting Clover HTML report directory" />
<delete dir="./report" failonerror="false" />
<mkdir dir="./report" verbose="true" />

<nant buildfile="${build.file}"
target="cleanall"
inheritall="true"/>

</target>

<target name="update">
<if test="${not property::exists('cvs.executable')}">
<fail message="cvs.executable property not set, so can't update" />
</if>
<echo message="CVS Executable at [${cvs.executable}]" />
<exec basedir="." program="${cvs.executable}"
commandline="-q update -P -d"/>
</target>

<!-- Call the default NAnt target -->
<target name="build">
<nant buildfile="${build.file}"
target="test"
inheritall="true"/>
</target>

<!-- Call the default NAnt target -->
<target name="build-daily">
<nant buildfile="${build.file}"
target="dailysnapshot"
inheritall="true"/>
</target>
</project>
132 changes: 132 additions & 0 deletions build-support/install-schema.build
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
<?xml version="1.0" ?>
<project name="Spring.NET-Schema" default="deploy-schema">

<target name="locations"
descriptions="Shows directories where .xsd files will be copied">
<property name="vsXXXX.version" value="VS.NET 2005"/>
<property name="vsXXXX.xml.schemas.install.dir" value="SOFTWARE\Microsoft\VisualStudio\8.0\InstallDir"/>
<property name="vsXXXX.relative.dir" value="..\\..\\Xml\\Schemas"/>
<!-- retrieve location of VS.NET 2005 schema store -->
<readregistry property="vs2005.xml.schemas" key="${vsXXXX.xml.schemas.install.dir}" hive="LocalMachine"
failonerror="false"/>
<echo message="VS.NET 2005 xsd install directory = ${vs2005.xml.schemas}${vsXXXX.relative.dir}"/>
</target>


<target name="deploy-schema"
description="Deploys the Schema to VS.Net schemas dirs. Copies VS 7.0, 7.1, 8.0">

<!-- deploy spring schema to the VS.NET 2005 schema store -->
<property name="vsXXXX.version" value="VS.NET 2005"/>
<property name="vsXXXX.xml.schemas.install.dir" value="SOFTWARE\Microsoft\VisualStudio\8.0\InstallDir"/>
<property name="vsXXXX.relative.dir" value="..\\..\\Xml\\Schemas"/>
<!-- retrieve location of VS.NET 2005 schema store -->
<readregistry property="vs2005.xml.schemas" key="${vsXXXX.xml.schemas.install.dir}" hive="LocalMachine"
failonerror="false"/>
<property name="vsXXXX.xml.schemas.notinstalled" value="true"/>
<if test="${property::exists('vs2005.xml.schemas')}">
<property name="vsXXXX.xml.schemas" value="${vs2005.xml.schemas}"/>
<call target="_deploy-schema"/>
</if>


<!-- deploy spring schema to the VS.NET 2003 schema store -->
<property name="vsXXXX.version" value="VS.NET 2003"/>
<property name="vsXXXX.xml.schemas.install.dir" value="SOFTWARE\Microsoft\VisualStudio\7.1\InstallDir"/>
<property name="vsXXXX.relative.dir" value="..\\Packages\schemas\xml"/>
<!-- retrieve location of VS.NET 2003 schema store -->
<readregistry property="vs2003.xml.schemas" key="${vsXXXX.xml.schemas.install.dir}" hive="LocalMachine"
failonerror="false"/>
<property name="vsXXXX.xml.schemas.notinstalled" value="true"/>
<if test="${property::exists('vs2003.xml.schemas')}">
<property name="vsXXXX.xml.schemas" value="${vs2003.xml.schemas}"/>
<call target="_deploy-schema"/>
</if>


<!-- deploy spring schema to the VS.NET 2002 schema store -->
<property name="vsXXXX.version" value="VS.NET 2002"/>
<property name="vsXXXX.xml.schemas.install.dir" value="SOFTWARE\Microsoft\VisualStudio\7.0\InstallDir"/>
<property name="vsXXXX.relative.dir" value="..\\Packages\schemas\xml"/>
<!-- retrieve location of VS.NET 2003 schema store -->
<readregistry property="vs2002.xml.schemas" key="${vsXXXX.xml.schemas.install.dir}" hive="LocalMachine"
failonerror="false"/>
<property name="vsXXXX.xml.schemas.notinstalled" value="true"/>
<if test="${property::exists('vs2002.xml.schemas')}">
<property name="vsXXXX.xml.schemas" value="${vs2002.xml.schemas}"/>
<call target="_deploy-schema"/>
</if>
</target>

<!-- 'private' scoped parameterised version of the 'deploy-schema' target -->


<target name="_deploy-schema">

<!-- deploy schema to VS.NET XXXX schema store -->
<echo message="-------------------------------------------------------"/>
<echo message="Copying spring-objects-1.1.xsd to ${vsXXXX.version} installation."/>
<echo message="-------------------------------------------------------"/>
<echo message=""/>
<copy file="spring-objects-1.1.xsd" todir="${vsXXXX.xml.schemas}${vsXXXX.relative.dir}"
verbose="true"
overwrite="true"/>

<echo message="-------------------------------------------------------"/>
<echo message="Copying spring-tool-1.1.xsd to ${vsXXXX.version} installation."/>
<echo message="-------------------------------------------------------"/>
<echo message=""/>
<copy file="spring-tool-1.1.xsd" todir="${vsXXXX.xml.schemas}${vsXXXX.relative.dir}"
verbose="true"
overwrite="true"/>

<echo message="----------------------------------------------------------"/>
<echo message="Copying spring-validation-1.1.xsd to ${vsXXXX.version} installation."/>
<echo message="----------------------------------------------------------"/>
<echo message=""/>
<copy file="spring-validation-1.1.xsd" todir="${vsXXXX.xml.schemas}${vsXXXX.relative.dir}"
verbose="true"
overwrite="true"/>

<echo message="----------------------------------------------------------"/>
<echo message="Copying spring-aop-1.1.xsd to ${vsXXXX.version} installation."/>
<echo message="----------------------------------------------------------"/>
<echo message=""/>
<copy file="spring-aop-1.1.xsd" todir="${vsXXXX.xml.schemas}${vsXXXX.relative.dir}"
verbose="true"
overwrite="true"/>

<echo message="----------------------------------------------------------"/>
<echo message="Copying spring-remoting-1.1.xsd to ${vsXXXX.version} installation."/>
<echo message="----------------------------------------------------------"/>
<echo message=""/>
<copy file="spring-remoting-1.1.xsd" todir="${vsXXXX.xml.schemas}${vsXXXX.relative.dir}"
verbose="true"
overwrite="true"/>

<echo message="----------------------------------------------------------"/>
<echo message="Copying spring-database.xsd to ${vsXXXX.version} installation."/>
<echo message="----------------------------------------------------------"/>
<echo message=""/>
<copy file="spring-database-1.1.xsd" todir="${vsXXXX.xml.schemas}..\\..\\Xml\\Schemas"
verbose="true"
overwrite="true"/>

<echo message="----------------------------------------------------------"/>
<echo message="Copying spring-tx-1.1t.xsd to ${vsXXXX.version} installation."/>
<echo message="----------------------------------------------------------"/>
<echo message=""/>
<copy file="spring-tx-1.1.xsd" todir="${vsXXXX.xml.schemas}..\\..\\Xml\\Schemas"
verbose="true"
overwrite="true"/>
t
<property name="vsXXXX.xml.schemas.notinstalled" value="false"/>

<if test="${vsXXXX.xml.schemas.notinstalled}">
<echo message=""/>
<echo message="Ignore Registry Value Not Found message."/>
<echo message=""/>
</if>
</target>

</project>
Loading

0 comments on commit c478a78

Please sign in to comment.