From 2b3ab7ae34ab4beaa57538b2369be9dbf733dfeb Mon Sep 17 00:00:00 2001 From: Nathan Heskew Date: Sun, 14 Nov 2010 23:34:56 -0800 Subject: [PATCH] Updating the SpecFlow extension installation to copy over placement.info files --HG-- branch : dev --- src/Orchard.Specs/Hosting/WebHost.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Orchard.Specs/Hosting/WebHost.cs b/src/Orchard.Specs/Hosting/WebHost.cs index 50bd0ac7f..3a46e6d69 100644 --- a/src/Orchard.Specs/Hosting/WebHost.cs +++ b/src/Orchard.Specs/Hosting/WebHost.cs @@ -69,9 +69,10 @@ namespace Orchard.Specs.Hosting { var targetModule = _tempSite.Combine(extensionFolder).Combine(extensionName); sourceModule.ShallowCopy("*.txt", targetModule); + sourceModule.ShallowCopy("*.info", targetModule); //sourceModule.ShallowCopy("*.csproj", targetModule); - //sourceModule.DeepCopy("*.cs", targetModule); + //sourceModule.DeepCopy("*.cs", targetModule);) if (sourceModule.Combine("bin").IsDirectory) { sourceModule.Combine("bin").ShallowCopy("*.dll", targetModule.Combine("bin"));