/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/EditorFeatures/VisualBasic/InlineRename/VisualBasicEditorInlineRenameService.vb
22 строки
956 B
David Wengier
Move IRefactorNotifyService down to features layer (#81749)
19 дек 2025, 07:57
Не верифицирован
19 дек 2025, 07:57
f009f3e
Код
Авторство
О чём код?
' 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. Imports System.Composition Imports Microsoft.CodeAnalysis.Editor.Implementation.InlineRename Imports Microsoft.CodeAnalysis.Host.Mef Imports Microsoft.CodeAnalysis.Rename Namespace Microsoft.CodeAnalysis.Editor.VisualBasic.InlineRename <ExportLanguageService(GetType(IEditorInlineRenameService), LanguageNames.VisualBasic), [Shared]> Friend Class VisualBasicEditorInlineRenameService Inherits AbstractEditorInlineRenameService <ImportingConstructor> <Obsolete(MefConstruction.ImportingConstructorMessage, True)> Public Sub New( <ImportMany> refactorNotifyServices As IEnumerable(Of IRefactorNotifyService)) MyBase.New(refactorNotifyServices) End Sub End Class End Namespace