/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Analyzers/VisualBasic/CodeFixes/ConflictMarkerResolution/VisualBasicResolveConflictMarkerCodeFixProvider.vb
24 строки
1 KB
Cyrus Najmabadi
Move 'conflict resolution' fixer down to shared layer
13 фев 2023, 22:42
13 фев 2023, 22:42
48dbce5
Код
Авторство
О чём код?
' 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.CodeFixes Imports Microsoft.CodeAnalysis.ConflictMarkerResolution Imports Microsoft.CodeAnalysis.Host.Mef Imports Microsoft.CodeAnalysis.VisualBasic.LanguageService Namespace Microsoft.CodeAnalysis.VisualBasic.ConflictMarkerResolution <ExportCodeFixProvider(LanguageNames.VisualBasic, Name:=PredefinedCodeFixProviderNames.ConflictMarkerResolution), [Shared]> Friend Class VisualBasicResolveConflictMarkerCodeFixProvider Inherits AbstractResolveConflictMarkerCodeFixProvider Private Const BC37284 As String = NameOf(BC37284) <ImportingConstructor> <Obsolete(MefConstruction.ImportingConstructorMessage, True)> Public Sub New() MyBase.New(VisualBasicSyntaxKinds.Instance, BC37284) End Sub End Class End Namespace