mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
Updating SpecFlow binaries
--HG-- branch : 1.x
This commit is contained in:
parent
0bee8e8313
commit
a88aa3e09c
BIN
lib/specflow/IKVM.OpenJDK.Core.dll
Normal file
BIN
lib/specflow/IKVM.OpenJDK.Core.dll
Normal file
Binary file not shown.
BIN
lib/specflow/IKVM.OpenJDK.Security.dll
Normal file
BIN
lib/specflow/IKVM.OpenJDK.Security.dll
Normal file
Binary file not shown.
BIN
lib/specflow/IKVM.OpenJDK.Text.dll
Normal file
BIN
lib/specflow/IKVM.OpenJDK.Text.dll
Normal file
Binary file not shown.
BIN
lib/specflow/IKVM.OpenJDK.Util.dll
Normal file
BIN
lib/specflow/IKVM.OpenJDK.Util.dll
Normal file
Binary file not shown.
BIN
lib/specflow/IKVM.Runtime.dll
Normal file
BIN
lib/specflow/IKVM.Runtime.dll
Normal file
Binary file not shown.
@ -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");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user