Move RazorPreCompileModule.cs to Razor.Precompilation

This commit is contained in:
Pranav K 2015-08-25 14:32:42 -07:00
parent 1bad8ce6d1
commit 44b45f3b1f
2 changed files with 2 additions and 3 deletions

View File

@ -3,13 +3,12 @@
using System; using System;
using Microsoft.AspNet.FileProviders; using Microsoft.AspNet.FileProviders;
using Microsoft.AspNet.Mvc.Razor.Precompilation;
using Microsoft.Dnx.Compilation.CSharp; using Microsoft.Dnx.Compilation.CSharp;
using Microsoft.Dnx.Runtime; using Microsoft.Dnx.Runtime;
using Microsoft.Framework.Caching.Memory; using Microsoft.Framework.Caching.Memory;
using Microsoft.Framework.DependencyInjection; using Microsoft.Framework.DependencyInjection;
namespace Microsoft.AspNet.Mvc namespace Microsoft.AspNet.Mvc.Razor.Precompilation
{ {
/// <summary> /// <summary>
/// An <see cref="ICompileModule"/> implementation that pre-compiles Razor views in the application. /// An <see cref="ICompileModule"/> implementation that pre-compiles Razor views in the application.

View File

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System; using System;
using Microsoft.AspNet.Mvc; using Microsoft.AspNet.Mvc.Razor.Precompilation;
namespace PrecompilationWebSite namespace PrecompilationWebSite
{ {