11 references to Scenario
Roslyn.Diagnostics.Analyzers (11)
ImportingConstructorShouldBeObsolete.cs (5)
179public static readonly ImmutableDictionary<string, string?> MissingAttribute = ImmutableDictionary.Create<string, string?>().Add(nameof(Scenario), nameof(MissingAttribute)); 180public static readonly ImmutableDictionary<string, string?> MissingDescription = ImmutableDictionary.Create<string, string?>().Add(nameof(Scenario), nameof(MissingDescription)); 181public static readonly ImmutableDictionary<string, string?> IncorrectDescription = ImmutableDictionary.Create<string, string?>().Add(nameof(Scenario), nameof(IncorrectDescription)); 182public static readonly ImmutableDictionary<string, string?> MissingError = ImmutableDictionary.Create<string, string?>().Add(nameof(Scenario), nameof(MissingError)); 183public static readonly ImmutableDictionary<string, string?> ErrorSetToFalse = ImmutableDictionary.Create<string, string?>().Add(nameof(Scenario), nameof(ErrorSetToFalse));
ImportingConstructorShouldBeObsoleteCodeFixProvider.cs (6)
38if (!diagnostic.Properties.TryGetValue(nameof(ImportingConstructorShouldBeObsolete.Scenario), out var scenario)) 47case ImportingConstructorShouldBeObsolete.Scenario.MissingAttribute: 52case ImportingConstructorShouldBeObsolete.Scenario.MissingDescription: 57case ImportingConstructorShouldBeObsolete.Scenario.IncorrectDescription: 62case ImportingConstructorShouldBeObsolete.Scenario.MissingError: 67case ImportingConstructorShouldBeObsolete.Scenario.ErrorSetToFalse: