From 781bdce0eb3ce884817725f2b6d7082a80c32e64 Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Thu, 20 Nov 2014 17:53:46 -0800 Subject: [PATCH] Add IServiceManifest --- src/Microsoft.AspNet.Mvc/IServiceManifest.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/Microsoft.AspNet.Mvc/IServiceManifest.cs diff --git a/src/Microsoft.AspNet.Mvc/IServiceManifest.cs b/src/Microsoft.AspNet.Mvc/IServiceManifest.cs new file mode 100644 index 0000000000..3810fdc06c --- /dev/null +++ b/src/Microsoft.AspNet.Mvc/IServiceManifest.cs @@ -0,0 +1,16 @@ +// 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; } + } +}