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