Skip to content

Commit

Permalink
Nest enum that is only used in one type
Browse files Browse the repository at this point in the history
  • Loading branch information
drewnoakes committed Mar 21, 2022
1 parent 1812bc8 commit 5d89a63
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 18 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ namespace Microsoft.VisualStudio.ProjectSystem.Tree.Dependencies.Subscriptions
[AppliesTo(ProjectCapability.DependenciesTree)]
internal sealed class DependencyRulesSubscriber : DependencyRulesSubscriberBase<EventData>
{
private enum RuleSource
{
/// <summary>Rule data sourced by evaluation.</summary>
Evaluation,

/// <summary>Rule data sourced by both evaluation and design-time build, joined by project version to ensure consistency.</summary>
Joint
}

public const string DependencyRulesSubscriberContract = "DependencyRulesSubscriberContract";

private readonly IDependencyTreeTelemetryService _treeTelemetryService;
Expand Down

0 comments on commit 5d89a63

Please sign in to comment.