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 {