From 8b17372a9970fd035c552b75359c1043227fb4e1 Mon Sep 17 00:00:00 2001 From: Dave Reed Date: Tue, 19 Oct 2010 11:02:22 -0700 Subject: [PATCH] Fixing path to Orchard Themes project for 'generate create theme' command --HG-- branch : dev --- .../Orchard.CodeGeneration/Commands/CodeGenerationCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Orchard.Web/Modules/Orchard.CodeGeneration/Commands/CodeGenerationCommands.cs b/src/Orchard.Web/Modules/Orchard.CodeGeneration/Commands/CodeGenerationCommands.cs index c1ed36c96..9a7d06c2e 100644 --- a/src/Orchard.Web/Modules/Orchard.CodeGeneration/Commands/CodeGenerationCommands.cs +++ b/src/Orchard.Web/Modules/Orchard.CodeGeneration/Commands/CodeGenerationCommands.cs @@ -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,