Add IServiceManifest

This commit is contained in:
Hao Kung 2014-11-20 17:37:35 -08:00
parent ac6f1223df
commit 63c8e1889b
2 changed files with 17 additions and 1 deletions

View File

@ -88,4 +88,4 @@ namespace Microsoft.AspNet.Hosting
public IEnumerable<Type> Services { get; private set; }
}
}
}
}

View File

@ -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<Type> Services { get; }
}
}