Fixing path to Orchard Themes project for 'generate create theme' command

--HG--
branch : dev
This commit is contained in:
Dave Reed 2010-10-19 11:02:22 -07:00
parent 7bb72608b1
commit 8b17372a99

View File

@ -29,7 +29,7 @@ namespace Orchard.CodeGeneration.Commands {
private const string ModuleName = "CodeGeneration";
private static readonly string _codeGenTemplatePath = HostingEnvironment.MapPath("~/Modules/Orchard." + ModuleName + "/CodeGenerationTemplates/");
private static readonly string _orchardWebProj = HostingEnvironment.MapPath("~/Orchard.Web.csproj");
private static readonly string _orchardThemesProj = HostingEnvironment.MapPath("~/Themes/Orchard.Themes.csproj");
private static readonly string _orchardThemesProj = HostingEnvironment.MapPath("~/Themes/Themes.csproj");
public CodeGenerationCommands(
IExtensionManager extensionManager,