Fix build break

This commit is contained in:
Hao Kung 2014-11-20 18:01:50 -08:00
parent 781bdce0eb
commit eedb08d75d
2 changed files with 1 additions and 16 deletions

View File

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

View File

@ -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;