|
From: <jer...@us...> - 2007-04-01 22:59:16
|
Revision: 37
http://structuremap.svn.sourceforge.net/structuremap/?rev=37&view=rev
Author: jeremydmiller
Date: 2007-04-01 15:59:15 -0700 (Sun, 01 Apr 2007)
Log Message:
-----------
fixing a build problem with the NAnt targets
Modified Paths:
--------------
trunk/Source/StructureMap/DeploymentTasks/DeploymentExecutor.cs
trunk/cruise.build
Modified: trunk/Source/StructureMap/DeploymentTasks/DeploymentExecutor.cs
===================================================================
--- trunk/Source/StructureMap/DeploymentTasks/DeploymentExecutor.cs 2007-04-01 22:21:15 UTC (rev 36)
+++ trunk/Source/StructureMap/DeploymentTasks/DeploymentExecutor.cs 2007-04-01 22:59:15 UTC (rev 37)
@@ -65,7 +65,7 @@
_sourceConfigDocument = new XmlDocument();
_sourceConfigDocument.Load(configPath);
- PluginGraphBuilder builder = new PluginGraphBuilder(new ConfigurationParser(_sourceConfigDocument));
+ PluginGraphBuilder builder = new PluginGraphBuilder(new ConfigurationParser(_sourceConfigDocument.DocumentElement));
_report = createPluginGraphReport(builder);
_defaultManager = builder.DefaultManager;
Modified: trunk/cruise.build
===================================================================
--- trunk/cruise.build 2007-04-01 22:21:15 UTC (rev 36)
+++ trunk/cruise.build 2007-04-01 22:59:15 UTC (rev 37)
@@ -123,11 +123,11 @@
<exec program="${nunit-console.exe}" workingdir="${build.dir}">
<arg value="StructureMap.Testing.dll" />
</exec>
-<!--
+
<exec program="${nunit-console.exe}" workingdir="${build.dir}">
<arg value="StructureMap.Testing.DeploymentTasks.dll" />
</exec>
--->
+
</target>
<target name="runDoctor">
@@ -148,13 +148,14 @@
<target name="post-clean">
<call target="cleanJunk" />
-
+
<delete>
<fileset basedir="${build.dir}">
<include name="*.xml" />
<include name="*.config" />
</fileset>
</delete>
+
</target>
<target name="archive">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|