Removed unused namespaces and empty folder.

This commit is contained in:
Sipke Schoorstra
2015-07-09 11:59:25 +01:00
parent b37951e205
commit 41b245560c
2 changed files with 2 additions and 6 deletions

View File

@@ -25,6 +25,7 @@
<IISExpressWindowsAuthentication /> <IISExpressWindowsAuthentication />
<IISExpressUseClassicPipelineMode /> <IISExpressUseClassicPipelineMode />
<TargetFrameworkProfile /> <TargetFrameworkProfile />
<UseGlobalApplicationHostFile />
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols> <DebugSymbols>true</DebugSymbols>
@@ -108,9 +109,7 @@
<ItemGroup> <ItemGroup>
<Content Include="Views\Admin\Export.cshtml" /> <Content Include="Views\Admin\Export.cshtml" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup />
<Folder Include="RecipeHandlers\" />
</ItemGroup>
<ItemGroup> <ItemGroup>
<Content Include="Views\Admin\ImportResult.cshtml" /> <Content Include="Views\Admin\ImportResult.cshtml" />
</ItemGroup> </ItemGroup>

View File

@@ -4,17 +4,14 @@ using System.Linq;
using System.Xml; using System.Xml;
using System.Xml.Linq; using System.Xml.Linq;
using Orchard.ContentManagement; using Orchard.ContentManagement;
using Orchard.ContentManagement.Handlers;
using Orchard.ContentManagement.MetaData; using Orchard.ContentManagement.MetaData;
using Orchard.Environment.Descriptor; using Orchard.Environment.Descriptor;
using Orchard.FileSystems.AppData; using Orchard.FileSystems.AppData;
using Orchard.ImportExport.Models; using Orchard.ImportExport.Models;
using Orchard.Localization; using Orchard.Localization;
using Orchard.Logging; using Orchard.Logging;
using Orchard.Recipes.Models;
using Orchard.Recipes.Services; using Orchard.Recipes.Services;
using Orchard.Services; using Orchard.Services;
using VersionOptions = Orchard.ContentManagement.VersionOptions;
namespace Orchard.ImportExport.Services { namespace Orchard.ImportExport.Services {
public class ImportExportService : IImportExportService { public class ImportExportService : IImportExportService {