Add IServiceManifest
This commit is contained in:
parent
eb6598e1b9
commit
781bdce0eb
|
|
@ -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; }
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue