Removed unused interface IMetadataReferenceProvider

This commit is contained in:
David Fowler 2014-03-09 01:39:07 -08:00
parent 34641d21e6
commit e4e665075c
2 changed files with 5 additions and 17 deletions

View File

@ -1,4 +1,5 @@
using System.Runtime.Versioning;
using System;
using System.Runtime.Versioning;
namespace Microsoft.Net.Runtime
{
@ -10,4 +11,7 @@ namespace Microsoft.Net.Runtime
string ApplicationBasePath { get; }
FrameworkName TargetFramework { get; }
}
[AssemblyNeutral]
public class AssemblyNeutralAttribute : Attribute { }
}

View File

@ -1,16 +0,0 @@
using System;
using System.Collections.Generic;
using System.Runtime.Versioning;
namespace Microsoft.Net.Runtime
{
[AssemblyNeutral]
public interface IMetadataReferenceProvider
{
// REVIEW: This is object because we don't have a reference to roslyn in this assembly
IEnumerable<object> GetReferences(string name, FrameworkName targetFramework);
}
[AssemblyNeutral]
public class AssemblyNeutralAttribute : Attribute { }
}