Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DefaultImportProjectFeature.cs « Microsoft.AspNetCore.Razor.Language « src « Razor « src - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92778322d7bb9883ac4b1852e9dc31cf386449d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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;
using System.Collections.Generic;

namespace Microsoft.AspNetCore.Razor.Language
{
    internal class DefaultImportProjectFeature : RazorProjectEngineFeatureBase, IImportProjectFeature
    {
        public IReadOnlyList<RazorProjectItem> GetImports(RazorProjectItem projectItem) => Array.Empty<RazorProjectItem>();
    }
}