Removed unused interface IMetadataReferenceProvider
This commit is contained in:
parent
34641d21e6
commit
e4e665075c
|
|
@ -1,4 +1,5 @@
|
||||||
using System.Runtime.Versioning;
|
using System;
|
||||||
|
using System.Runtime.Versioning;
|
||||||
|
|
||||||
namespace Microsoft.Net.Runtime
|
namespace Microsoft.Net.Runtime
|
||||||
{
|
{
|
||||||
|
|
@ -10,4 +11,7 @@ namespace Microsoft.Net.Runtime
|
||||||
string ApplicationBasePath { get; }
|
string ApplicationBasePath { get; }
|
||||||
FrameworkName TargetFramework { get; }
|
FrameworkName TargetFramework { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[AssemblyNeutral]
|
||||||
|
public class AssemblyNeutralAttribute : Attribute { }
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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 { }
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue