From eedb08d75d9cecbf1fa68ece3663ea050564930d Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Thu, 20 Nov 2014 18:01:50 -0800 Subject: [PATCH] Fix build break --- src/Microsoft.AspNet.Mvc/IServiceManifest.cs | 16 ---------------- .../RazorPreCompileModule.cs | 1 + 2 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 src/Microsoft.AspNet.Mvc/IServiceManifest.cs diff --git a/src/Microsoft.AspNet.Mvc/IServiceManifest.cs b/src/Microsoft.AspNet.Mvc/IServiceManifest.cs deleted file mode 100644 index 3810fdc06c..0000000000 --- a/src/Microsoft.AspNet.Mvc/IServiceManifest.cs +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using System; -using System.Collections.Generic; - -namespace Microsoft.Framework.DependencyInjection.ServiceLookup -{ -#if ASPNET50 || ASPNETCORE50 - [Microsoft.Framework.Runtime.AssemblyNeutral] -#endif - public interface IServiceManifest - { - IEnumerable Services { get; } - } -} diff --git a/src/Microsoft.AspNet.Mvc/RazorPreCompileModule.cs b/src/Microsoft.AspNet.Mvc/RazorPreCompileModule.cs index 66ed6c8733..2b321314ec 100644 --- a/src/Microsoft.AspNet.Mvc/RazorPreCompileModule.cs +++ b/src/Microsoft.AspNet.Mvc/RazorPreCompileModule.cs @@ -11,6 +11,7 @@ using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.Framework.DependencyInjection; using Microsoft.Framework.DependencyInjection.Fallback; +using Microsoft.Framework.DependencyInjection.ServiceLookup; using Microsoft.Framework.OptionsModel; using Microsoft.Framework.Runtime;