15 instantiations of SupportedSpecialType
Microsoft.Build.TaskAuthoring.Analyzer (15)
SupportedTaskItemTypes.cs (15)
26new SupportedSpecialType(SpecialType.System_Boolean, "bool"), 27new SupportedSpecialType(SpecialType.System_Char, "char"), 28new SupportedSpecialType(SpecialType.System_Byte, "byte"), 29new SupportedSpecialType(SpecialType.System_SByte, "sbyte"), 30new SupportedSpecialType(SpecialType.System_Int16, "short"), 31new SupportedSpecialType(SpecialType.System_UInt16, "ushort"), 32new SupportedSpecialType(SpecialType.System_Int32, "int"), 33new SupportedSpecialType(SpecialType.System_UInt32, "uint"), 34new SupportedSpecialType(SpecialType.System_Int64, "long"), 35new SupportedSpecialType(SpecialType.System_UInt64, "ulong"), 36new SupportedSpecialType(SpecialType.System_Single, "float"), 37new SupportedSpecialType(SpecialType.System_Double, "double"), 38new SupportedSpecialType(SpecialType.System_Decimal, "decimal"), 39new SupportedSpecialType(SpecialType.System_DateTime, "DateTime"), 40new SupportedSpecialType(SpecialType.System_String, "string"));
2 references to SupportedSpecialType
Microsoft.Build.TaskAuthoring.Analyzer (2)
SupportedTaskItemTypes.cs (2)
24private static readonly ImmutableArray<SupportedSpecialType> s_specialTypes = 48foreach (SupportedSpecialType supportedType in s_specialTypes)