20 lines
683 B
C#
20 lines
683 B
C#
// 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
|
|
{
|
|
/// <summary>
|
|
/// Specifies the list of <see cref="MetadataReference"/> used in Razor compilation.
|
|
/// </summary>
|
|
public class MetadataReferenceFeature
|
|
{
|
|
/// <summary>
|
|
/// Gets the <see cref="MetadataReference"/> instances.
|
|
/// </summary>
|
|
public IList<MetadataReference> MetadataReferences { get; } = new List<MetadataReference>();
|
|
}
|
|
}
|