mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Moved Theme recipe execution step to Orchard.Themes.
This commit is contained in:
@@ -29,6 +29,7 @@ using Orchard.Tests.Environment.Extensions;
|
||||
using Orchard.Tests.Environment.Features;
|
||||
using Orchard.Tests.Stubs;
|
||||
using Orchard.Tests.UI.Navigation;
|
||||
using Orchard.Themes.RecipeExecutionSteps;
|
||||
using Orchard.Themes.Services;
|
||||
|
||||
namespace Orchard.Tests.Modules.Recipes.RecipeHandlers {
|
||||
|
||||
@@ -91,7 +91,6 @@
|
||||
<Compile Include="RecipeExecutionSteps\MigrationStep.cs" />
|
||||
<Compile Include="RecipeExecutionSteps\ModuleStep.cs" />
|
||||
<Compile Include="RecipeExecutionSteps\SettingsStep.cs" />
|
||||
<Compile Include="RecipeExecutionSteps\ThemeStep.cs" />
|
||||
<Compile Include="RecipeHandlers\RecipeExecutionStepHandler.cs" />
|
||||
<Compile Include="Routes.cs" />
|
||||
<Compile Include="Services\RecipeHarvester.cs" />
|
||||
@@ -123,10 +122,6 @@
|
||||
<Project>{DFD137A2-DDB5-4D22-BE0D-FA9AD4C8B059}</Project>
|
||||
<Name>Orchard.Packaging</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Orchard.Themes\Orchard.Themes.csproj">
|
||||
<Project>{CDE24A24-01D3-403C-84B9-37722E18DFB7}</Project>
|
||||
<Name>Orchard.Themes</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Scripts\Web.config">
|
||||
|
||||
@@ -75,6 +75,7 @@
|
||||
<Compile Include="Migrations.cs" />
|
||||
<Compile Include="Models\ThemeEntry.cs" />
|
||||
<Compile Include="Models\DisableThemePart.cs" />
|
||||
<Compile Include="RecipeExecutionSteps\ThemeStep.cs" />
|
||||
<Compile Include="ResourceManifest.cs" />
|
||||
<Compile Include="Controllers\AdminController.cs" />
|
||||
<Compile Include="Handlers\ThemeSiteSettingsPartHandler.cs" />
|
||||
@@ -116,6 +117,10 @@
|
||||
<Name>Orchard.Core</Name>
|
||||
<Private>false</Private>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Orchard.Packaging\Orchard.Packaging.csproj">
|
||||
<Project>{dfd137a2-ddb5-4d22-be0d-fa9ad4c8b059}</Project>
|
||||
<Name>Orchard.Packaging</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Content\Web.config">
|
||||
|
||||
@@ -9,7 +9,7 @@ using Orchard.Packaging.Services;
|
||||
using Orchard.Recipes.Services;
|
||||
using Orchard.Themes.Services;
|
||||
|
||||
namespace Orchard.Recipes.RecipeExecutionSteps {
|
||||
namespace Orchard.Themes.RecipeExecutionSteps {
|
||||
public class ThemeStep : RecipeExecutionStep {
|
||||
private readonly IPackagingSourceManager _packagingSourceManager;
|
||||
private readonly IPackageManager _packageManager;
|
||||
Reference in New Issue
Block a user