diff --git a/src/NetAnalyzers/CSharp/Microsoft.NetFramework.Analyzers/CSharpMarkWindowsFormsEntryPointsWithStaThread.Fixer.cs b/src/NetAnalyzers/CSharp/Microsoft.NetFramework.Analyzers/CSharpMarkWindowsFormsEntryPointsWithStaThread.Fixer.cs
deleted file mode 100644
index 9c2bbbd9ff..0000000000
--- a/src/NetAnalyzers/CSharp/Microsoft.NetFramework.Analyzers/CSharpMarkWindowsFormsEntryPointsWithStaThread.Fixer.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
-
-using System.Composition;
-using Microsoft.NetFramework.Analyzers;
-using Microsoft.CodeAnalysis;
-using Microsoft.CodeAnalysis.CodeFixes;
-
-namespace Microsoft.NetFramework.CSharp.Analyzers
-{
- ///
- /// CA2232: Mark Windows Forms entry points with STAThread
- ///
- [ExportCodeFixProvider(LanguageNames.CSharp), Shared]
- public class CSharpMarkWindowsFormsEntryPointsWithStaThreadFixer : MarkWindowsFormsEntryPointsWithStaThreadFixer
- {
- }
-}
\ No newline at end of file
diff --git a/src/NetAnalyzers/CSharp/Microsoft.NetFramework.Analyzers/CSharpMarkWindowsFormsEntryPointsWithStaThread.cs b/src/NetAnalyzers/CSharp/Microsoft.NetFramework.Analyzers/CSharpMarkWindowsFormsEntryPointsWithStaThread.cs
deleted file mode 100644
index 3cf6c232a1..0000000000
--- a/src/NetAnalyzers/CSharp/Microsoft.NetFramework.Analyzers/CSharpMarkWindowsFormsEntryPointsWithStaThread.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
-
-using Microsoft.NetFramework.Analyzers;
-using Microsoft.CodeAnalysis;
-using Microsoft.CodeAnalysis.Diagnostics;
-
-namespace Microsoft.NetFramework.CSharp.Analyzers
-{
- ///
- /// CA2232: Mark Windows Forms entry points with STAThread
- ///
- [DiagnosticAnalyzer(LanguageNames.CSharp)]
- public sealed class CSharpMarkWindowsFormsEntryPointsWithStaThreadAnalyzer : MarkWindowsFormsEntryPointsWithStaThreadAnalyzer
- {
- }
-}
\ No newline at end of file
diff --git a/src/NetAnalyzers/CSharp/Microsoft.NetFramework.Analyzers/CSharpSpecifyMessageBoxOptions.Fixer.cs b/src/NetAnalyzers/CSharp/Microsoft.NetFramework.Analyzers/CSharpSpecifyMessageBoxOptions.Fixer.cs
deleted file mode 100644
index 515f0caba1..0000000000
--- a/src/NetAnalyzers/CSharp/Microsoft.NetFramework.Analyzers/CSharpSpecifyMessageBoxOptions.Fixer.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
-
-using System.Composition;
-using Microsoft.NetFramework.Analyzers;
-using Microsoft.CodeAnalysis;
-using Microsoft.CodeAnalysis.CodeFixes;
-
-namespace Microsoft.NetFramework.CSharp.Analyzers
-{
- ///
- /// CA1300: Specify MessageBoxOptions
- ///
- [ExportCodeFixProvider(LanguageNames.CSharp), Shared]
- public class CSharpSpecifyMessageBoxOptionsFixer : SpecifyMessageBoxOptionsFixer
- {
- }
-}
\ No newline at end of file
diff --git a/src/NetAnalyzers/CSharp/Microsoft.NetFramework.Analyzers/CSharpSpecifyMessageBoxOptions.cs b/src/NetAnalyzers/CSharp/Microsoft.NetFramework.Analyzers/CSharpSpecifyMessageBoxOptions.cs
deleted file mode 100644
index 983467075c..0000000000
--- a/src/NetAnalyzers/CSharp/Microsoft.NetFramework.Analyzers/CSharpSpecifyMessageBoxOptions.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
-
-using Microsoft.NetFramework.Analyzers;
-using Microsoft.CodeAnalysis;
-using Microsoft.CodeAnalysis.Diagnostics;
-
-namespace Microsoft.NetFramework.CSharp.Analyzers
-{
- ///
- /// CA1300: Specify MessageBoxOptions
- ///
- [DiagnosticAnalyzer(LanguageNames.CSharp)]
- public sealed class CSharpSpecifyMessageBoxOptionsAnalyzer : SpecifyMessageBoxOptionsAnalyzer
- {
- }
-}
\ No newline at end of file
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/MarkWindowsFormsEntryPointsWithStaThread.Fixer.cs b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/MarkWindowsFormsEntryPointsWithStaThread.Fixer.cs
deleted file mode 100644
index 1d7a06bc3c..0000000000
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/MarkWindowsFormsEntryPointsWithStaThread.Fixer.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
-
-using Microsoft.CodeAnalysis.CodeFixes;
-using System.Collections.Immutable;
-using System.Threading.Tasks;
-
-namespace Microsoft.NetFramework.Analyzers
-{
- ///
- /// CA2232: Mark Windows Forms entry points with STAThread
- ///
- public abstract class MarkWindowsFormsEntryPointsWithStaThreadFixer : CodeFixProvider
- {
- public sealed override ImmutableArray FixableDiagnosticIds { get; } = ImmutableArray.Empty;
-
- public sealed override FixAllProvider GetFixAllProvider()
- {
- // See https://github.com/dotnet/roslyn/blob/main/docs/analyzers/FixAllProvider.md for more information on Fix All Providers
- return WellKnownFixAllProviders.BatchFixer;
- }
-
- public sealed override Task RegisterCodeFixesAsync(CodeFixContext context)
- {
- // Fixer not yet implemented.
- return Task.CompletedTask;
-
- }
- }
-}
\ No newline at end of file
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/MarkWindowsFormsEntryPointsWithStaThread.cs b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/MarkWindowsFormsEntryPointsWithStaThread.cs
deleted file mode 100644
index bd6743ebb5..0000000000
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/MarkWindowsFormsEntryPointsWithStaThread.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
-
-using System.Collections.Immutable;
-using Microsoft.CodeAnalysis;
-using Microsoft.CodeAnalysis.Diagnostics;
-
-namespace Microsoft.NetFramework.Analyzers
-{
- ///
- /// CA2232: Mark Windows Forms entry points with STAThread
- ///
- public abstract class MarkWindowsFormsEntryPointsWithStaThreadAnalyzer : DiagnosticAnalyzer
- {
- internal const string RuleId = "CA2232";
-
- /*internal static readonly DiagnosticDescriptor Rule = DiagnosticDescriptorHelper.Create(
- RuleId,
- CreateLocalizableResourceString(nameof(MarkWindowsFormsEntryPointsWithStaThreadTitle)),
- CreateLocalizableResourceString(nameof(MarkWindowsFormsEntryPointsWithStaThreadMessage)),
- DiagnosticCategory.Usage,
- RuleLevel.Disabled,
- description: CreateLocalizableResourceString(nameof(MarkWindowsFormsEntryPointsWithStaThreadDescription)),
- isPortedFxCopRule: true,
- isDataflowRule: false,
- isEnabledByDefaultInFxCopAnalyzers: false);*/
-
- public override ImmutableArray SupportedDiagnostics { get; } = ImmutableArray.Empty;
- //ImmutableArray.Create(Rule);
-
-#pragma warning disable RS1025 // Configure generated code analysis
- public override void Initialize(AnalysisContext context)
-#pragma warning restore RS1025 // Configure generated code analysis
- {
- context.EnableConcurrentExecution();
-
- // TODO: Configure generated code analysis.
- //analysisContext.ConfigureGeneratedCodeAnalysis(GeneratedCodeAnalysisFlags.None);
- }
- }
-}
\ No newline at end of file
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/MicrosoftNetFrameworkAnalyzersResources.resx b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/MicrosoftNetFrameworkAnalyzersResources.resx
index 8ced8be38a..88c939c932 100644
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/MicrosoftNetFrameworkAnalyzersResources.resx
+++ b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/MicrosoftNetFrameworkAnalyzersResources.resx
@@ -117,15 +117,6 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- Specify MessageBoxOptions
-
-
- To correctly display a message box for cultures that use a right-to-left reading order, the RightAlign and RtlReading members of the MessageBoxOptions enumeration must be passed to the Show method.
-
-
- Specify MessageBoxOptions
-
Avoid duplicate accelerators
@@ -153,15 +144,6 @@
Do not mark serviced components with WebMethod
-
- Mark Windows Forms entry points with STAThread
-
-
- STAThreadAttribute indicates that the COM threading model for the application is a single-threaded apartment. This attribute must be present on the entry point of any application that uses Windows Forms; if it is omitted, the Windows components might not work correctly.
-
-
- Mark Windows Forms entry points with STAThread
-
Call base class methods on ISerializable types
@@ -373,4 +355,4 @@
Missing ValidateAntiForgeryTokenAttribute on controller action {0}
-
\ No newline at end of file
+
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/SpecifyMessageBoxOptions.Fixer.cs b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/SpecifyMessageBoxOptions.Fixer.cs
deleted file mode 100644
index ce93da1d8e..0000000000
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/SpecifyMessageBoxOptions.Fixer.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
-
-using Microsoft.CodeAnalysis.CodeFixes;
-using System.Collections.Immutable;
-using System.Threading.Tasks;
-
-namespace Microsoft.NetFramework.Analyzers
-{
- ///
- /// CA1300: Specify MessageBoxOptions
- ///
- public abstract class SpecifyMessageBoxOptionsFixer : CodeFixProvider
- {
- public sealed override ImmutableArray FixableDiagnosticIds { get; } = ImmutableArray.Empty;
-
- public sealed override FixAllProvider GetFixAllProvider()
- {
- // See https://github.com/dotnet/roslyn/blob/main/docs/analyzers/FixAllProvider.md for more information on Fix All Providers
- return WellKnownFixAllProviders.BatchFixer;
- }
-
- public sealed override Task RegisterCodeFixesAsync(CodeFixContext context)
- {
- // Fixer not yet implemented.
- return Task.CompletedTask;
-
- }
- }
-}
\ No newline at end of file
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/SpecifyMessageBoxOptions.cs b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/SpecifyMessageBoxOptions.cs
deleted file mode 100644
index ed6b51d559..0000000000
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/SpecifyMessageBoxOptions.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
-
-using System.Collections.Immutable;
-using Microsoft.CodeAnalysis;
-using Microsoft.CodeAnalysis.Diagnostics;
-
-namespace Microsoft.NetFramework.Analyzers
-{
- ///
- /// CA1300: Specify MessageBoxOptions
- ///
- public abstract class SpecifyMessageBoxOptionsAnalyzer : DiagnosticAnalyzer
- {
- /*internal const string RuleId = "CA1300";
-
- internal static readonly DiagnosticDescriptor Rule = DiagnosticDescriptorHelper.Create(
- RuleId,
- CreateLocalizableResourceString(nameof(SpecifyMessageBoxOptionsTitle)),
- CreateLocalizableResourceString(nameof(SpecifyMessageBoxOptionsMessage)),
- DiagnosticCategory.Globalization,
- RuleLevel.Disabled,
- description: CreateLocalizableResourceString(nameof(SpecifyMessageBoxOptionsDescription)),
- isPortedFxCopRule: true,
- isDataflowRule: false,
- isEnabledByDefaultInFxCopAnalyzers: false);*/
-
- public override ImmutableArray SupportedDiagnostics { get; } = ImmutableArray.Empty;
- //ImmutableArray.Create(Rule);
-
-#pragma warning disable RS1025 // Configure generated code analysis
- public override void Initialize(AnalysisContext context)
-#pragma warning restore RS1025 // Configure generated code analysis
- {
- context.EnableConcurrentExecution();
-
- // TODO: Configure generated code analysis.
- //analysisContext.ConfigureGeneratedCodeAnalysis(GeneratedCodeAnalysisFlags.None);
- }
- }
-}
\ No newline at end of file
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.cs.xlf b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.cs.xlf
index 19b37adf97..07dbfad1ec 100644
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.cs.xlf
+++ b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.cs.xlf
@@ -2,21 +2,6 @@
-
- Specify MessageBoxOptions
- Zadejte MessageBoxOptions
-
-
-
- To correctly display a message box for cultures that use a right-to-left reading order, the RightAlign and RtlReading members of the MessageBoxOptions enumeration must be passed to the Show method.
- Aby se okno se zprávou zobrazovalo správně pro jazykové verze, jejichž text se čte zprava doleva, musí se metodě Show předat členy RightAlign a RtlReading výčtu MessageBoxOptions.
-
-
-
- Specify MessageBoxOptions
- Zadejte MessageBoxOptions
-
- Avoid duplicate acceleratorsVyhněte se duplicitním klávesovým zkratkám
@@ -62,21 +47,6 @@
Neoznačujte komponenty služeb jako WebMethod
-
- Mark Windows Forms entry points with STAThread
- Označte vstupní body Windows Forms jako STAThread
-
-
-
- STAThreadAttribute indicates that the COM threading model for the application is a single-threaded apartment. This attribute must be present on the entry point of any application that uses Windows Forms; if it is omitted, the Windows components might not work correctly.
- STAThreadAttribute označuje, že podprocesový model COM pro aplikaci je STA (single-threaded apartment). Tento atribut se musí zadat na vstupní bod každé aplikace, která používá Windows Forms. Pokud se vynechá, komponenty Windows nemusí fungovat správně.
-
-
-
- Mark Windows Forms entry points with STAThread
- Označte vstupní body Windows Forms jako STAThread
-
- Call base class methods on ISerializable typesZavolejte metody základních tříd pro typy ISerializable
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.de.xlf b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.de.xlf
index 291fbcdcc9..d4e0d4e0d7 100644
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.de.xlf
+++ b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.de.xlf
@@ -2,21 +2,6 @@
-
- Specify MessageBoxOptions
- MessageBoxOptions angeben
-
-
-
- To correctly display a message box for cultures that use a right-to-left reading order, the RightAlign and RtlReading members of the MessageBoxOptions enumeration must be passed to the Show method.
- Um ein Meldungsfeld für Kulturen mit Leserichtung von rechts nach links ordnungsgemäß anzuzeigen, müssen die Member "RightAlign" und "RtlReading" der Enumeration "MessageBoxOptions" an die Show-Methode übergeben werden.
-
-
-
- Specify MessageBoxOptions
- MessageBoxOptions angeben
-
- Avoid duplicate acceleratorsDoppelte Zugriffstasten vermeiden
@@ -62,21 +47,6 @@
ServicedComponents nicht mit WebMethod markieren
-
- Mark Windows Forms entry points with STAThread
- Windows Forms-Einstiegspunkte mit STAThread markieren
-
-
-
- STAThreadAttribute indicates that the COM threading model for the application is a single-threaded apartment. This attribute must be present on the entry point of any application that uses Windows Forms; if it is omitted, the Windows components might not work correctly.
- STAThreadAttribute weist darauf hin, dass es sich bei dem COM-Threadingmodell für die Anwendung um ein Singlethread-Apartment handelt. Dieses Attribut muss am Einstiegspunkt jeder Anwendung vorhanden sein, die Windows Forms verwendet. Wenn es ausgelassen wird, funktionieren die Windows-Komponenten möglicherweise nicht ordnungsgemäß.
-
-
-
- Mark Windows Forms entry points with STAThread
- Windows Forms-Einstiegspunkte mit STAThread markieren
-
- Call base class methods on ISerializable typesBasisklassenmethoden bei ISerializable-Typen aufrufen
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.es.xlf b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.es.xlf
index 6c2bd19264..1de91b3c17 100644
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.es.xlf
+++ b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.es.xlf
@@ -2,21 +2,6 @@
-
- Specify MessageBoxOptions
- Especificar MessageBoxOptions
-
-
-
- To correctly display a message box for cultures that use a right-to-left reading order, the RightAlign and RtlReading members of the MessageBoxOptions enumeration must be passed to the Show method.
- Para mostrar correctamente un cuadro de mensaje para las referencias culturales con escritura de derecha a izquierda, se deben pasar al método Show los miembros RightAlign y RtlReading de la enumeración MessageBoxOptions.
-
-
-
- Specify MessageBoxOptions
- Especificar MessageBoxOptions
-
- Avoid duplicate acceleratorsEvitar aceleradores duplicados
@@ -62,21 +47,6 @@
No marcar los componentes con servicio como WebMethod
-
- Mark Windows Forms entry points with STAThread
- Marcar puntos de entrada de Windows Forms con STAThread
-
-
-
- STAThreadAttribute indicates that the COM threading model for the application is a single-threaded apartment. This attribute must be present on the entry point of any application that uses Windows Forms; if it is omitted, the Windows components might not work correctly.
- STAThreadAttribute indica que el modelo de subprocesos de COM para la aplicación es un contenedor uniproceso. Este atributo debe estar presente en el punto de entrada de cualquier aplicación que utilice Windows Forms; si se omite, los componentes de Windows podrían no funcionar correctamente.
-
-
-
- Mark Windows Forms entry points with STAThread
- Marcar puntos de entrada de Windows Forms con STAThread
-
- Call base class methods on ISerializable typesLlamar a métodos de clase base en tipos ISerializable
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.fr.xlf b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.fr.xlf
index 67c5f12186..614a0c5730 100644
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.fr.xlf
+++ b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.fr.xlf
@@ -2,21 +2,6 @@
-
- Specify MessageBoxOptions
- Spécifier MessageBoxOptions
-
-
-
- To correctly display a message box for cultures that use a right-to-left reading order, the RightAlign and RtlReading members of the MessageBoxOptions enumeration must be passed to the Show method.
- Pour afficher correctement une boîte de message pour les cultures qui utilisent un sens de lecture de droite à gauche, les membres RightAlign et RtlReading de l'énumération MessageBoxOptions doivent être passés à la méthode Show.
-
-
-
- Specify MessageBoxOptions
- Spécifier MessageBoxOptions
-
- Avoid duplicate acceleratorsÉviter les accélérateurs en double
@@ -62,21 +47,6 @@
Ne pas marquer les composants pris en charge avec WebMethod
-
- Mark Windows Forms entry points with STAThread
- Marquez les points d'entrée Windows Forms avec STAThread
-
-
-
- STAThreadAttribute indicates that the COM threading model for the application is a single-threaded apartment. This attribute must be present on the entry point of any application that uses Windows Forms; if it is omitted, the Windows components might not work correctly.
- STAThreadAttribute indique que le modèle de thread COM pour l'application est un thread unique cloisonné. Cet attribut doit être présent au point d'entrée de l'application qui utilise des Windows Forms. S'il est omis, les composants Windows risquent de ne pas fonctionner correctement.
-
-
-
- Mark Windows Forms entry points with STAThread
- Marquez les points d'entrée Windows Forms avec STAThread
-
- Call base class methods on ISerializable typesAppeler les méthodes de classe de base sur les types ISerializable
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.it.xlf b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.it.xlf
index 2901210c97..2d0d473963 100644
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.it.xlf
+++ b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.it.xlf
@@ -2,21 +2,6 @@
-
- Specify MessageBoxOptions
- Specificare MessageBoxOptions
-
-
-
- To correctly display a message box for cultures that use a right-to-left reading order, the RightAlign and RtlReading members of the MessageBoxOptions enumeration must be passed to the Show method.
- Per visualizzare correttamente una finestra di messaggio per le impostazioni cultura che usano un ordine di lettura da destra a sinistra, è necessario passare i membri RightAlign e RtlReading dell'enumerazione MessageBoxOptions al metodo Show.
-
-
-
- Specify MessageBoxOptions
- Specificare MessageBoxOptions
-
- Avoid duplicate acceleratorsEvitare tasti di scelta rapida duplicati
@@ -62,21 +47,6 @@
Non contrassegnare componenti serviti con WebMethod
-
- Mark Windows Forms entry points with STAThread
- Contrassegnare i punti di ingresso di Windows Forms con STAThread
-
-
-
- STAThreadAttribute indicates that the COM threading model for the application is a single-threaded apartment. This attribute must be present on the entry point of any application that uses Windows Forms; if it is omitted, the Windows components might not work correctly.
- STAThreadAttribute indica che il modello di threading COM per l'applicazione è un apartment a thread singolo. Questo attributo deve essere presente sul punto di ingresso di qualsiasi applicazione che usa Windows Forms. Se viene omesso, i componenti Windows potrebbero non funzionare correttamente.
-
-
-
- Mark Windows Forms entry points with STAThread
- Contrassegnare i punti di ingresso di Windows Forms con STAThread
-
- Call base class methods on ISerializable typesChiamare metodi della classe di base su tipi ISerializable
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.ja.xlf b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.ja.xlf
index 446bd80fe8..c7dc27b60c 100644
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.ja.xlf
+++ b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.ja.xlf
@@ -2,21 +2,6 @@
-
- Specify MessageBoxOptions
- MessageBoxOptions を指定します
-
-
-
- To correctly display a message box for cultures that use a right-to-left reading order, the RightAlign and RtlReading members of the MessageBoxOptions enumeration must be passed to the Show method.
- 右から左に読む言語を使用するカルチャのメッセージ ボックスを正しく表示するには、MessageBoxOptions 列挙型の RightAlign メンバーと RtlReading メンバーを Show メソッドに渡す必要があります。
-
-
-
- Specify MessageBoxOptions
- MessageBoxOptions を指定します
-
- Avoid duplicate accelerators重複するアクセラレータを使用しません
@@ -62,21 +47,6 @@
サービス コンポーネントを WebMethod に設定しません
-
- Mark Windows Forms entry points with STAThread
- Windows フォームのエントリ ポイントを STAThread に設定します
-
-
-
- STAThreadAttribute indicates that the COM threading model for the application is a single-threaded apartment. This attribute must be present on the entry point of any application that uses Windows Forms; if it is omitted, the Windows components might not work correctly.
- STAThreadAttribute は、アプリケーションの COM スレッド モデルがシングルスレッド アパートメントであることを示します。この属性は、Windows フォームを使用する任意のアプリケーションのエントリ ポイントに存在する必要があります。省略した場合は、Windows コンポーネントが正常に動作しない可能性があります。
-
-
-
- Mark Windows Forms entry points with STAThread
- Windows フォームのエントリ ポイントを STAThread に設定します
-
- Call base class methods on ISerializable typesISerializable 型で基底クラス メソッドを呼び出します
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.ko.xlf b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.ko.xlf
index e54cb98ca8..bdba3d39bb 100644
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.ko.xlf
+++ b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.ko.xlf
@@ -2,21 +2,6 @@
-
- Specify MessageBoxOptions
- MessageBoxOptions를 지정하세요.
-
-
-
- To correctly display a message box for cultures that use a right-to-left reading order, the RightAlign and RtlReading members of the MessageBoxOptions enumeration must be passed to the Show method.
- 오른쪽에서 왼쪽 방향의 읽기 순서를 사용하는 문화권에 맞는 메시지 상자를 올바르게 표시하려면 MessageBoxOptions 열거형의 RightAlign 및 RtlReading 멤버가 Show 메서드로 전달되어야 합니다.
-
-
-
- Specify MessageBoxOptions
- MessageBoxOptions를 지정하세요.
-
- Avoid duplicate accelerators중복 액셀러레이터 키를 사용하지 마세요.
@@ -62,21 +47,6 @@
서비스 구성 요소를 WebMethod를 사용하여 표시하지 마세요.
-
- Mark Windows Forms entry points with STAThread
- Windows Forms 진입점을 STAThread를 사용하여 표시하세요.
-
-
-
- STAThreadAttribute indicates that the COM threading model for the application is a single-threaded apartment. This attribute must be present on the entry point of any application that uses Windows Forms; if it is omitted, the Windows components might not work correctly.
- STAThreadAttribute는 이 애플리케이션에 대한 COM 스레딩 모델이 단일 스레드 아파트임을 나타냅니다. 이 특성은 Windows Forms를 사용하는 애플리케이션의 진입점에 있어야 하며 이 특성이 생략된 경우 Windows 구성 요소가 올바르게 작동하지 않을 수 있습니다.
-
-
-
- Mark Windows Forms entry points with STAThread
- Windows Forms 진입점을 STAThread를 사용하여 표시하세요.
-
- Call base class methods on ISerializable typesISerializable 형식에서 기본 클래스 메서드를 호출하세요.
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.pl.xlf b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.pl.xlf
index b9432e1382..c6d46e4e97 100644
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.pl.xlf
+++ b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.pl.xlf
@@ -2,21 +2,6 @@
-
- Specify MessageBoxOptions
- Określ argument MessageBoxOptions
-
-
-
- To correctly display a message box for cultures that use a right-to-left reading order, the RightAlign and RtlReading members of the MessageBoxOptions enumeration must be passed to the Show method.
- Aby prawidłowo wyświetlać okna komunikatów w krajach, w których tekst jest czytany od prawej do lewej strony, elementy członkowskie RightAlign oraz RtlReading wyliczenia MessageBoxOptions muszą zostać przekazane do metody Show.
-
-
-
- Specify MessageBoxOptions
- Określ argument MessageBoxOptions
-
- Avoid duplicate acceleratorsUnikaj duplikowania akceleratorów
@@ -62,21 +47,6 @@
Nie oznaczaj usługowych składników atrybutem WebMethod
-
- Mark Windows Forms entry points with STAThread
- Oznacz punkty wejścia modelu Windows Forms atrybutem STAThread
-
-
-
- STAThreadAttribute indicates that the COM threading model for the application is a single-threaded apartment. This attribute must be present on the entry point of any application that uses Windows Forms; if it is omitted, the Windows components might not work correctly.
- Atrybut STAThreadAttribute wskazuje, że model wątków COM dla aplikacji jest komórką jednowątkową. Ten atrybut musi być obecny w punkcie wejścia każdej aplikacji, która używa modelu Windows Forms. Jeśli zostanie pominięty, komponenty systemu Windows mogą funkcjonować nieprawidłowo.
-
-
-
- Mark Windows Forms entry points with STAThread
- Oznacz punkty wejścia modelu Windows Forms atrybutem STAThread
-
- Call base class methods on ISerializable typesWywołuj metody klasy podstawowej dla typów ISerializable
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.pt-BR.xlf b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.pt-BR.xlf
index 65e881b503..e759eb8cd8 100644
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.pt-BR.xlf
+++ b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.pt-BR.xlf
@@ -2,21 +2,6 @@
-
- Specify MessageBoxOptions
- Especificar MessageBoxOptions
-
-
-
- To correctly display a message box for cultures that use a right-to-left reading order, the RightAlign and RtlReading members of the MessageBoxOptions enumeration must be passed to the Show method.
- Para exibir corretamente uma caixa de mensagens para culturas cujo sentido de leitura é da direita para a esquerda, os membros RightAlign e RtlReading da enumeração MessageBoxOptions devem ser passados para o método Show.
-
-
-
- Specify MessageBoxOptions
- Especificar MessageBoxOptions
-
- Avoid duplicate acceleratorsEvitar aceleradores duplicados
@@ -62,21 +47,6 @@
Não marcar componentes atendidos com WebMethod
-
- Mark Windows Forms entry points with STAThread
- Marcar pontos de entrada do Windows Forms com STAThread
-
-
-
- STAThreadAttribute indicates that the COM threading model for the application is a single-threaded apartment. This attribute must be present on the entry point of any application that uses Windows Forms; if it is omitted, the Windows components might not work correctly.
- STAThreadAttribute indica que o modelo de threading COM para o aplicativo é um single-threaded apartment. Esse atributo pode estar presente no ponto de entrada de qualquer aplicativo que usa o Windows Forms; se omitido, talvez os componentes do Windows não funcionem corretamente.
-
-
-
- Mark Windows Forms entry points with STAThread
- Marcar pontos de entrada do Windows Forms com STAThread
-
- Call base class methods on ISerializable typesChamar métodos da classe base em tipos ISerializable
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.ru.xlf b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.ru.xlf
index 1760ed4d93..7c82b8a721 100644
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.ru.xlf
+++ b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.ru.xlf
@@ -2,21 +2,6 @@
-
- Specify MessageBoxOptions
- Укажите MessageBoxOptions
-
-
-
- To correctly display a message box for cultures that use a right-to-left reading order, the RightAlign and RtlReading members of the MessageBoxOptions enumeration must be passed to the Show method.
- Чтобы правильно отобразить окно сообщения для языков и региональных параметров, где используется порядок чтения справа налево, нужно передать члены RightAlign и RtlReading перечисления MessageBoxOptions в метод Show.
-
-
-
- Specify MessageBoxOptions
- Укажите MessageBoxOptions
-
- Avoid duplicate acceleratorsИзбегайте повторяющихся сочетаний клавиш
@@ -62,21 +47,6 @@
Не помечайте обслуживаемые компоненты атрибутом WebMethod
-
- Mark Windows Forms entry points with STAThread
- Пометьте точки входа Windows Forms с помощью STAThread
-
-
-
- STAThreadAttribute indicates that the COM threading model for the application is a single-threaded apartment. This attribute must be present on the entry point of any application that uses Windows Forms; if it is omitted, the Windows components might not work correctly.
- STAThreadAttribute указывает, что потоковая модель COM для приложения является однопотоковым подразделением. Этот атрибут должен присутствовать в точке входа любого приложения, использующего Windows Forms. Если он пропущен, компоненты Windows могут работать неправильно.
-
-
-
- Mark Windows Forms entry points with STAThread
- Пометьте точки входа Windows Forms с помощью STAThread
-
- Call base class methods on ISerializable typesВызывайте методы базового класса для типов ISerializable
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.tr.xlf b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.tr.xlf
index f8f8fd3795..33b0e57268 100644
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.tr.xlf
+++ b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.tr.xlf
@@ -2,21 +2,6 @@
-
- Specify MessageBoxOptions
- MessageBoxOptions belirtin
-
-
-
- To correctly display a message box for cultures that use a right-to-left reading order, the RightAlign and RtlReading members of the MessageBoxOptions enumeration must be passed to the Show method.
- Sağdan sola doğru okuma düzeni kullanan kültürler için bir ileti kutusunu doğru şekilde görüntülemek için, MessageBoxOptions sıralamasının RightAlign ve RtlReading üyelerinin Show yöntemine geçirilmesi gerekir.
-
-
-
- Specify MessageBoxOptions
- MessageBoxOptions belirtin
-
- Avoid duplicate acceleratorsYinelenen hızlandırıcılardan kaçının
@@ -62,21 +47,6 @@
Hizmet verilen bileşenleri WebMethod ile işaretlemeyin
-
- Mark Windows Forms entry points with STAThread
- Windows Forms giriş noktalarını STAThread ile işaretleyin
-
-
-
- STAThreadAttribute indicates that the COM threading model for the application is a single-threaded apartment. This attribute must be present on the entry point of any application that uses Windows Forms; if it is omitted, the Windows components might not work correctly.
- STAThreadAttribute, uygulama için COM iş parçacığı modelinin tek iş parçacıklı bölme olduğunu gösterir. Bu özniteliğin Windows Forms kullanan tüm uygulamaların giriş noktasında bulunması gerekir; bulunmazsa, Windows bileşenleri doğru çalışmayabilir.
-
-
-
- Mark Windows Forms entry points with STAThread
- Windows Forms giriş noktalarını STAThread ile işaretleyin
-
- Call base class methods on ISerializable typesISerializable türleri üzerinde temel sınıf yöntemlerini çağırın
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.zh-Hans.xlf b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.zh-Hans.xlf
index 63309fe36b..285cbf11e5 100644
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.zh-Hans.xlf
+++ b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.zh-Hans.xlf
@@ -2,21 +2,6 @@
-
- Specify MessageBoxOptions
- 指定 MessageBoxOptions
-
-
-
- To correctly display a message box for cultures that use a right-to-left reading order, the RightAlign and RtlReading members of the MessageBoxOptions enumeration must be passed to the Show method.
- 要为使用从右到左阅读顺序的区域性正确显示消息框,必须将 MessageBoxOptions 枚举的 RightAlign 和 RtlReading 成员传递给 Show 方法。
-
-
-
- Specify MessageBoxOptions
- 指定 MessageBoxOptions
-
- Avoid duplicate accelerators避免快捷键重复
@@ -62,21 +47,6 @@
不要使用 WebMethod 标记服务组件
-
- Mark Windows Forms entry points with STAThread
- 使用 STAThread 标记 Windows 窗体的入口点
-
-
-
- STAThreadAttribute indicates that the COM threading model for the application is a single-threaded apartment. This attribute must be present on the entry point of any application that uses Windows Forms; if it is omitted, the Windows components might not work correctly.
- STAThreadAttribute 指示该应用程序的 COM 线程模型是一个单线程单元。使用 Windows 窗体的任何应用程序的入口点上均必须存在此特性;如果没有,则 Windows 组件可能无法正常工作。
-
-
-
- Mark Windows Forms entry points with STAThread
- 使用 STAThread 标记 Windows 窗体的入口点
-
- Call base class methods on ISerializable types对 ISerializable 类型调用基类方法
diff --git a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.zh-Hant.xlf b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.zh-Hant.xlf
index 8151941f32..3a0b8dd0cd 100644
--- a/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.zh-Hant.xlf
+++ b/src/NetAnalyzers/Core/Microsoft.NetFramework.Analyzers/xlf/MicrosoftNetFrameworkAnalyzersResources.zh-Hant.xlf
@@ -2,21 +2,6 @@
-
- Specify MessageBoxOptions
- 指定 MessageBoxOptions
-
-
-
- To correctly display a message box for cultures that use a right-to-left reading order, the RightAlign and RtlReading members of the MessageBoxOptions enumeration must be passed to the Show method.
- 為正確顯示由右至左閱讀順序文化特性 (Culture) 的訊息方塊,必須將 MessageBoxOptions 列舉的 RightAlign 與 RtlReading 成員傳遞到 Show 方法。
-
-
-
- Specify MessageBoxOptions
- 指定 MessageBoxOptions
-
- Avoid duplicate accelerators避免重複的快速鍵
@@ -62,21 +47,6 @@
請勿將 Serviced 元件標記為 WebMethod
-
- Mark Windows Forms entry points with STAThread
- 將 Windows Forms 進入點標記為 STAThread
-
-
-
- STAThreadAttribute indicates that the COM threading model for the application is a single-threaded apartment. This attribute must be present on the entry point of any application that uses Windows Forms; if it is omitted, the Windows components might not work correctly.
- STAThreadAttribute 表示應用程式的 COM 執行緒模式是單一執行緒 Apartment。所有使用 Windows Forms 的應用程式之進入點上,都必須要有此屬性,如果省略此屬性,Windows 元件可能會無法正確運作。
-
-
-
- Mark Windows Forms entry points with STAThread
- 將 Windows Forms 進入點標記為 STAThread
-
- Call base class methods on ISerializable types呼叫 ISerializable 類型上的基底類別方法
diff --git a/src/NetAnalyzers/UnitTests/Microsoft.NetFramework.Analyzers/MarkWindowsFormsEntryPointsWithStaThreadTests.cs b/src/NetAnalyzers/UnitTests/Microsoft.NetFramework.Analyzers/MarkWindowsFormsEntryPointsWithStaThreadTests.cs
deleted file mode 100644
index eabd888b0c..0000000000
--- a/src/NetAnalyzers/UnitTests/Microsoft.NetFramework.Analyzers/MarkWindowsFormsEntryPointsWithStaThreadTests.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
-
-namespace Microsoft.NetFramework.Analyzers.UnitTests
-{
- public class MarkWindowsFormsEntryPointsWithStaThreadTests
- {
- }
-}
\ No newline at end of file
diff --git a/src/NetAnalyzers/UnitTests/Microsoft.NetFramework.Analyzers/SpecifyMessageBoxOptionsTests.cs b/src/NetAnalyzers/UnitTests/Microsoft.NetFramework.Analyzers/SpecifyMessageBoxOptionsTests.cs
deleted file mode 100644
index 301e52acd4..0000000000
--- a/src/NetAnalyzers/UnitTests/Microsoft.NetFramework.Analyzers/SpecifyMessageBoxOptionsTests.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
-
-namespace Microsoft.NetFramework.Analyzers.UnitTests
-{
- public class SpecifyMessageBoxOptionsTests
- {
- }
-}
\ No newline at end of file
diff --git a/src/NetAnalyzers/VisualBasic/Microsoft.NetFramework.Analyzers/BasicMarkWindowsFormsEntryPointsWithStaThread.Fixer.vb b/src/NetAnalyzers/VisualBasic/Microsoft.NetFramework.Analyzers/BasicMarkWindowsFormsEntryPointsWithStaThread.Fixer.vb
deleted file mode 100644
index b7b05edb3c..0000000000
--- a/src/NetAnalyzers/VisualBasic/Microsoft.NetFramework.Analyzers/BasicMarkWindowsFormsEntryPointsWithStaThread.Fixer.vb
+++ /dev/null
@@ -1,17 +0,0 @@
-' Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
-
-Imports System.Composition
-Imports Microsoft.NetFramework.Analyzers
-Imports Microsoft.CodeAnalysis
-Imports Microsoft.CodeAnalysis.CodeFixes
-
-Namespace Microsoft.NetFramework.VisualBasic.Analyzers
- '''
- ''' CA2232: Mark Windows Forms entry points with STAThread
- '''
-
- Public NotInheritable Class BasicMarkWindowsFormsEntryPointsWithStaThreadFixer
- Inherits MarkWindowsFormsEntryPointsWithStaThreadFixer
-
- End Class
-End Namespace
diff --git a/src/NetAnalyzers/VisualBasic/Microsoft.NetFramework.Analyzers/BasicMarkWindowsFormsEntryPointsWithStaThread.vb b/src/NetAnalyzers/VisualBasic/Microsoft.NetFramework.Analyzers/BasicMarkWindowsFormsEntryPointsWithStaThread.vb
deleted file mode 100644
index affcb56621..0000000000
--- a/src/NetAnalyzers/VisualBasic/Microsoft.NetFramework.Analyzers/BasicMarkWindowsFormsEntryPointsWithStaThread.vb
+++ /dev/null
@@ -1,16 +0,0 @@
-' Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
-
-Imports Microsoft.NetFramework.Analyzers
-Imports Microsoft.CodeAnalysis
-Imports Microsoft.CodeAnalysis.Diagnostics
-
-Namespace Microsoft.NetFramework.VisualBasic.Analyzers
- '''
- ''' CA2232: Mark Windows Forms entry points with STAThread
- '''
-
- Public NotInheritable Class BasicMarkWindowsFormsEntryPointsWithStaThreadAnalyzer
- Inherits MarkWindowsFormsEntryPointsWithStaThreadAnalyzer
-
- End Class
-End Namespace
\ No newline at end of file
diff --git a/src/NetAnalyzers/VisualBasic/Microsoft.NetFramework.Analyzers/BasicSpecifyMessageBoxOptions.Fixer.vb b/src/NetAnalyzers/VisualBasic/Microsoft.NetFramework.Analyzers/BasicSpecifyMessageBoxOptions.Fixer.vb
deleted file mode 100644
index 54837a79a3..0000000000
--- a/src/NetAnalyzers/VisualBasic/Microsoft.NetFramework.Analyzers/BasicSpecifyMessageBoxOptions.Fixer.vb
+++ /dev/null
@@ -1,17 +0,0 @@
-' Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
-
-Imports System.Composition
-Imports Microsoft.NetFramework.Analyzers
-Imports Microsoft.CodeAnalysis
-Imports Microsoft.CodeAnalysis.CodeFixes
-
-Namespace Microsoft.NetFramework.VisualBasic.Analyzers
- '''
- ''' CA1300: Specify MessageBoxOptions
- '''
-
- Public NotInheritable Class BasicSpecifyMessageBoxOptionsFixer
- Inherits SpecifyMessageBoxOptionsFixer
-
- End Class
-End Namespace
diff --git a/src/NetAnalyzers/VisualBasic/Microsoft.NetFramework.Analyzers/BasicSpecifyMessageBoxOptions.vb b/src/NetAnalyzers/VisualBasic/Microsoft.NetFramework.Analyzers/BasicSpecifyMessageBoxOptions.vb
deleted file mode 100644
index b1c6a477e7..0000000000
--- a/src/NetAnalyzers/VisualBasic/Microsoft.NetFramework.Analyzers/BasicSpecifyMessageBoxOptions.vb
+++ /dev/null
@@ -1,16 +0,0 @@
-' Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
-
-Imports Microsoft.NetFramework.Analyzers
-Imports Microsoft.CodeAnalysis
-Imports Microsoft.CodeAnalysis.Diagnostics
-
-Namespace Microsoft.NetFramework.VisualBasic.Analyzers
- '''
- ''' CA1300: Specify MessageBoxOptions
- '''
-
- Public NotInheritable Class BasicSpecifyMessageBoxOptionsAnalyzer
- Inherits SpecifyMessageBoxOptionsAnalyzer
-
- End Class
-End Namespace
\ No newline at end of file