/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Features/CSharp/Portable/CallHierarchy/CSharpCallHierarchyService.cs
15 строк
663 B
Joey Robichaud
Move CallHierarchy logic to the Features layer (#82864)
31 мар 2026, 21:13
Не верифицирован
31 мар 2026, 21:13
abacf67
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Composition; using Microsoft.CodeAnalysis.CallHierarchy; using Microsoft.CodeAnalysis.Host.Mef; namespace Microsoft.CodeAnalysis.CSharp.CallHierarchy; [ExportLanguageService(typeof(ICallHierarchyService), LanguageNames.CSharp), Shared] [method: ImportingConstructor] [method: Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] internal sealed class CSharpCallHierarchyService() : AbstractCallHierarchyService;