Updating SpecFlow binaries

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros 2012-01-19 16:10:49 -08:00
parent 0bee8e8313
commit a88aa3e09c
6 changed files with 8 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Diagnostics;
using System.IO;
using System.Linq;
@ -36,7 +37,13 @@ namespace Orchard.Specs.Hosting {
catch { }
// Trying the two known relative paths to the Orchard.Web directory.
// The second one is for the target "spec" in orchard.proj.
_orchardWebPath = baseDir.Up(3).Combine("Orchard.Web");
if (ConfigurationManager.AppSettings["orchardHosting"] != null) {
_orchardWebPath = baseDir.Combine(ConfigurationManager.AppSettings["orchardHosting"]).Combine("Orchard.Web");
}
else {
_orchardWebPath = baseDir.Up(3).Combine("Orchard.Web");
}
if (!_orchardWebPath.Exists) {
_orchardWebPath = baseDir.Parent.Combine("stage");
}