From: <jer...@us...> - 2008-10-27 02:13:46
|
Revision: 194 http://structuremap.svn.sourceforge.net/structuremap/?rev=194&view=rev Author: jeremydmiller Date: 2008-10-27 02:13:42 +0000 (Mon, 27 Oct 2008) Log Message: ----------- some cleanup on the NAnt file, and the CHM file Modified Paths: -------------- trunk/README.TXT trunk/Source/StructureMap.AutoMocking/StructureMap.AutoMocking.csproj trunk/cruise.build Added Paths: ----------- trunk/StructureMap.chm Modified: trunk/README.TXT =================================================================== --- trunk/README.TXT 2008-10-27 01:07:28 UTC (rev 193) +++ trunk/README.TXT 2008-10-27 02:13:42 UTC (rev 194) @@ -1,4 +1,4 @@ -To start using StructureMap, either use the DLL's in the build folder or click on the RunBuild.BAT file to run the full NAnt build. There is a known issue with the build "sticking" on the custom NAnt tasks. If this happens, delete the copies of StructureMap.Dll and StructureMap.DeploymentTasks.Dll in the bin\NAnt folder. Look in the "build" directory for the build products. +To start using StructureMap, either use the DLL's in the "deploy" folder or click on the RunBuild.BAT file to run the full NAnt build. There is a known issue with the build "sticking" on the custom NAnt tasks. If this happens, delete the copies of StructureMap.Dll and StructureMap.DeploymentTasks.Dll in the bin\NAnt folder. Look in the "build" directory for the build products. A copy of the StructureMap website and documentation is in the "Docs" folder. Modified: trunk/Source/StructureMap.AutoMocking/StructureMap.AutoMocking.csproj =================================================================== --- trunk/Source/StructureMap.AutoMocking/StructureMap.AutoMocking.csproj 2008-10-27 01:07:28 UTC (rev 193) +++ trunk/Source/StructureMap.AutoMocking/StructureMap.AutoMocking.csproj 2008-10-27 02:13:42 UTC (rev 194) @@ -41,6 +41,7 @@ <DefineConstants>DEBUG;TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> + <DocumentationFile>bin\Debug\StructureMap.AutoMocking.XML</DocumentationFile> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <DebugType>pdbonly</DebugType> @@ -49,6 +50,7 @@ <DefineConstants>TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> + <DocumentationFile>bin\Release\StructureMap.AutoMocking.XML</DocumentationFile> </PropertyGroup> <ItemGroup> <Reference Include="Rhino.Mocks, Version=3.5.0.1337, Culture=neutral, PublicKeyToken=0b3305902db7183f, processorArchitecture=MSIL"> Added: trunk/StructureMap.chm =================================================================== (Binary files differ) Property changes on: trunk/StructureMap.chm ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Modified: trunk/cruise.build =================================================================== --- trunk/cruise.build 2008-10-27 01:07:28 UTC (rev 193) +++ trunk/cruise.build 2008-10-27 02:13:42 UTC (rev 194) @@ -121,17 +121,27 @@ <target name="post-clean"> - <call target="cleanJunk" /> + + <delete dir="deploy" failonerror="false" /> + <mkdir dir="deploy" /> - <delete> - <fileset basedir="${build.dir}"> - <include name="*.xml" /> - <include name="*.config" /> - <exclude name="structuremap.xml" /> - </fileset> - </delete> + <copy todir="deploy" flatten="true" overwrite="true"> + <fileset basedir="source\StructureMap.Testing\bin\${project.config}"> + <include name="StructureMap.dll" /> + <include name="StructureMap.xml" /> + <include name="StructureMap.AutoMocking.dll" /> + <include name="StructureMap.AutoMocking.xml" /> + </fileset> + </copy> + <copy todir="deploy" file="bin\Rhino.Mocks.dll"/> + <copy todir="deploy" file="StructureMap.chm"/> + + <copy todir="deploy" file="Source\StructureMapDoctor\bin\${project.config}\StructureMapDoctor.exe" /> + + <call target="cleanJunk" /> </target> + <target name="archive"> <if test="${property::exists('CCNetLabel')}"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |