From 44b45f3b1fe0f52e14136f355d0ab8257e80be06 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Tue, 25 Aug 2015 14:32:42 -0700 Subject: [PATCH] Move RazorPreCompileModule.cs to Razor.Precompilation --- .../Precompilation}/RazorPreCompileModule.cs | 3 +-- .../compiler/preprocess/RazorPreCompilation.cs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) rename src/{Microsoft.AspNet.Mvc => Microsoft.AspNet.Mvc.Razor/Precompilation}/RazorPreCompileModule.cs (96%) diff --git a/src/Microsoft.AspNet.Mvc/RazorPreCompileModule.cs b/src/Microsoft.AspNet.Mvc.Razor/Precompilation/RazorPreCompileModule.cs similarity index 96% rename from src/Microsoft.AspNet.Mvc/RazorPreCompileModule.cs rename to src/Microsoft.AspNet.Mvc.Razor/Precompilation/RazorPreCompileModule.cs index 9eb36f6f21..2906134886 100644 --- a/src/Microsoft.AspNet.Mvc/RazorPreCompileModule.cs +++ b/src/Microsoft.AspNet.Mvc.Razor/Precompilation/RazorPreCompileModule.cs @@ -3,13 +3,12 @@ using System; using Microsoft.AspNet.FileProviders; -using Microsoft.AspNet.Mvc.Razor.Precompilation; using Microsoft.Dnx.Compilation.CSharp; using Microsoft.Dnx.Runtime; using Microsoft.Framework.Caching.Memory; using Microsoft.Framework.DependencyInjection; -namespace Microsoft.AspNet.Mvc +namespace Microsoft.AspNet.Mvc.Razor.Precompilation { /// /// An implementation that pre-compiles Razor views in the application. diff --git a/test/WebSites/PrecompilationWebSite/compiler/preprocess/RazorPreCompilation.cs b/test/WebSites/PrecompilationWebSite/compiler/preprocess/RazorPreCompilation.cs index d5514fda5d..0edf7e412f 100644 --- a/test/WebSites/PrecompilationWebSite/compiler/preprocess/RazorPreCompilation.cs +++ b/test/WebSites/PrecompilationWebSite/compiler/preprocess/RazorPreCompilation.cs @@ -2,7 +2,7 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; -using Microsoft.AspNet.Mvc; +using Microsoft.AspNet.Mvc.Razor.Precompilation; namespace PrecompilationWebSite {