// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using Microsoft.CodeAnalysis; namespace Microsoft.AspNetCore.Mvc.Razor.Compilation { /// /// Specifies the list of used in Razor compilation. /// public class MetadataReferenceFeature { /// /// Gets the instances. /// public IList MetadataReferences { get; } = new List(); } }