diff --git a/src/Microsoft.AspNet.Mvc.Razor/Services/IApplicationEnvironment.cs b/src/Microsoft.AspNet.Mvc.Razor/Services/IApplicationEnvironment.cs index c7514da6ef..f6c81ba0d3 100644 --- a/src/Microsoft.AspNet.Mvc.Razor/Services/IApplicationEnvironment.cs +++ b/src/Microsoft.AspNet.Mvc.Razor/Services/IApplicationEnvironment.cs @@ -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 { } } diff --git a/src/Microsoft.AspNet.Mvc.Razor/Services/IMetadataReferenceProvider.cs b/src/Microsoft.AspNet.Mvc.Razor/Services/IMetadataReferenceProvider.cs deleted file mode 100644 index d61b5743f7..0000000000 --- a/src/Microsoft.AspNet.Mvc.Razor/Services/IMetadataReferenceProvider.cs +++ /dev/null @@ -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 GetReferences(string name, FrameworkName targetFramework); - } - - [AssemblyNeutral] - public class AssemblyNeutralAttribute : Attribute { } -}