diff --git a/src/EditorFeatures/CSharp/UseAutoProperty/UseAutoPropertyAnalyzer.cs b/src/EditorFeatures/CSharp/UseAutoProperty/UseAutoPropertyAnalyzer.cs index f4d4e247daf8f5ce7dad47ba0171e221abd64a34..6a26e19ff0abf80c48956a132c1541ab9afe84ad 100644 --- a/src/EditorFeatures/CSharp/UseAutoProperty/UseAutoPropertyAnalyzer.cs +++ b/src/EditorFeatures/CSharp/UseAutoProperty/UseAutoPropertyAnalyzer.cs @@ -12,8 +12,9 @@ namespace Microsoft.CodeAnalysis.Editor.CSharp.UseAutoProperty { - [Export] - [DiagnosticAnalyzer(LanguageNames.CSharp)] + // https://github.com/dotnet/roslyn/issues/5408 + //[Export] + //[DiagnosticAnalyzer(LanguageNames.CSharp)] internal class UseAutoPropertyAnalyzer : AbstractUseAutoPropertyAnalyzer { protected override bool SupportsReadOnlyProperties(Compilation compilation) diff --git a/src/EditorFeatures/VisualBasic/UseAutoProperty/UseAutoPropertyAnalyzer.vb b/src/EditorFeatures/VisualBasic/UseAutoProperty/UseAutoPropertyAnalyzer.vb index 3c097a57a252d14a4be12095b2b82b989bf738f5..6457639b3cdfb121458020e101e35a0fc579d84a 100644 --- a/src/EditorFeatures/VisualBasic/UseAutoProperty/UseAutoPropertyAnalyzer.vb +++ b/src/EditorFeatures/VisualBasic/UseAutoProperty/UseAutoPropertyAnalyzer.vb @@ -8,8 +8,9 @@ Imports Microsoft.CodeAnalysis.UseAutoProperty Imports Microsoft.CodeAnalysis.VisualBasic.Syntax Namespace Microsoft.CodeAnalysis.Editor.VisualBasic.UseAutoProperty - - + ' https://github.com/dotnet/roslyn/issues/5408 + ' + ' Friend Class UseAutoPropertyAnalyzer Inherits AbstractUseAutoPropertyAnalyzer(Of PropertyBlockSyntax, FieldDeclarationSyntax, ModifiedIdentifierSyntax, ExpressionSyntax)