6 references to TryGetOrCreateTypeByMetadataName
Roslyn.Diagnostics.Analyzers (6)
AbstractRunIterations`1.cs (3)
33
if (!semanticModel.Compilation.
TryGetOrCreateTypeByMetadataName
(WellKnownTypeNames.XunitFactAttribute, out var factAttribute)
34
|| !semanticModel.Compilation.
TryGetOrCreateTypeByMetadataName
(WellKnownTypeNames.XunitSdkDataAttribute, out var dataAttribute)
35
|| !semanticModel.Compilation.
TryGetOrCreateTypeByMetadataName
(WellKnownTypeNames.XunitCombinatorialDataAttribute, out var combinatorialDataAttribute))
ImportingConstructorShouldBeObsoleteCodeFixProvider.cs (1)
211
if (semanticModel.Compilation.
TryGetOrCreateTypeByMetadataName
(WellKnownTypeNames.MicrosoftCodeAnalysisHostMefMefConstruction, out var mefConstructionType) &&
RelaxTestNamingSuppressor.cs (2)
32
context.Compilation.
TryGetOrCreateTypeByMetadataName
(WellKnownTypeNames.XunitFactAttribute, out var factAttribute);
33
context.Compilation.
TryGetOrCreateTypeByMetadataName
(WellKnownTypeNames.BenchmarkDotNetAttributesBenchmarkAttribute, out var benchmarkAttribute);