Add IServiceManifest
This commit is contained in:
parent
ac6f1223df
commit
63c8e1889b
|
|
@ -88,4 +88,4 @@ namespace Microsoft.AspNet.Hosting
|
||||||
public IEnumerable<Type> Services { get; private set; }
|
public IEnumerable<Type> Services { get; private set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -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