7 references to TypeDef
Microsoft.Analyzers.Local (7)
ApiLifecycle\ApiLifecycleAnalyzer.cs (1)
82
foreach (
var
type in assemblyAnalysis.MissingTypes.Where(x => x.Stage != Stage.Experimental))
ApiLifecycle\AssemblyAnalysis.cs (3)
16
public HashSet<
TypeDef
> MissingTypes { get; } = [];
108
foreach (
var
type in Assembly.Types)
133
var
typeDef = Assembly.Types.FirstOrDefault(x => x.ModifiersAndName == typeModifiersAndName);
ApiLifecycle\Model\Assembly.cs (3)
14
public
TypeDef
[] Types { get; }
19
Types = value.GetValueArray<
TypeDef
>(nameof(Types));
25
Types = Array.Empty<
TypeDef
>();