Skip to content

Commit

Permalink
Merge pull request #74266 from CyrusNajmabadi/removeUnusedType3
Browse files Browse the repository at this point in the history
  • Loading branch information
CyrusNajmabadi authored Jul 6, 2024
2 parents 1874807 + a100709 commit 19b5e96
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 282 deletions.
13 changes: 0 additions & 13 deletions src/VisualStudio/Core/Def/ID.RoslynCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,6 @@ public static class RoslynCommands
public const int SetActiveRuleSet = 0x0118;
public const int SetSeverityDefault = 0x011b;

// Error list context menu command IDs for suppressions and setting severity
public const int AddSuppressions = 0x011d;
public const int AddSuppressionsInSource = 0x011f;
public const int AddSuppressionsInSuppressionFile = 0x0120;
public const int RemoveSuppressions = 0x0121;
public const int ErrorListSetSeveritySubMenu = 0x0122;
public const int ErrorListSetSeverityError = 0x0124;
public const int ErrorListSetSeverityWarning = 0x0125;
public const int ErrorListSetSeverityInfo = 0x0126;
public const int ErrorListSetSeverityHidden = 0x0127;
public const int ErrorListSetSeverityNone = 0x0128;
public const int ErrorListSetSeverityDefault = 0x0129;

// Analyze and Code Cleanup menu IDs
public const int AnalysisScopeDefault = 0x0131;
public const int AnalysisScopeCurrentDocument = 0x0132;
Expand Down
2 changes: 0 additions & 2 deletions src/VisualStudio/Core/Def/RoslynPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
using Microsoft.CodeAnalysis.Common;
using Microsoft.CodeAnalysis.EditAndContinue;
using Microsoft.CodeAnalysis.Editor.Implementation.IntelliSense.AsyncCompletion;
using Microsoft.CodeAnalysis.Editor.QuickInfo;
using Microsoft.CodeAnalysis.Editor.Shared.Utilities;
using Microsoft.CodeAnalysis.ErrorReporting;
using Microsoft.CodeAnalysis.Notification;
Expand Down Expand Up @@ -228,7 +227,6 @@ protected override async Task LoadComponentsAsync(CancellationToken cancellation
// we need to load it as early as possible since we can have errors from
// package from each language very early
await this.ComponentModel.GetService<VisualStudioSuppressionFixService>().InitializeAsync(this).ConfigureAwait(false);
await this.ComponentModel.GetService<VisualStudioDiagnosticListTableCommandHandler>().InitializeAsync(this, cancellationToken).ConfigureAwait(false);
await this.ComponentModel.GetService<VisualStudioDiagnosticListSuppressionStateService>().InitializeAsync(this, cancellationToken).ConfigureAwait(false);

await this.ComponentModel.GetService<IVisualStudioDiagnosticAnalyzerService>().InitializeAsync(this, cancellationToken).ConfigureAwait(false);
Expand Down

This file was deleted.

0 comments on commit 19b5e96

Please sign in to comment.