2 instantiations of ResourceData
Microsoft.Build.Tasks.Core (2)
system.design\stronglytypedresourcebuilder.cs (2)
125? new ResourceData(liveObject.Value.GetType(), liveObject.Value.ToString()) 126: new ResourceData(resource.Value.TypeFullName, resource.Value.TypeAssemblyQualifiedName);
11 references to ResourceData
Microsoft.Build.Tasks.Core (11)
system.design\stronglytypedresourcebuilder.cs (11)
121var resourceTypes = new Dictionary<String, ResourceData>(StringComparer.InvariantCultureIgnoreCase); 124ResourceData data = resource.Value is LiveObjectResource liveObject 136private static CodeCompileUnit InternalCreate(Dictionary<String, ResourceData> resourceList, String baseName, String generatedCodeNamespace, String resourcesNamespace, CodeDomProvider codeProvider, bool internalClass, out String[] unmatchable) 156SortedList<string, ResourceData> cleanedResourceList = VerifyResourceNames(resourceList, codeProvider, errors, out Dictionary<string, string> reverseFixupTable); 238foreach (KeyValuePair<string, ResourceData> entry in cleanedResourceList) 520private static bool DefineResourceFetchingProperty(String propertyName, String resourceName, ResourceData data, CodeTypeDeclaration srClass, bool internalClass, bool useStatic) 714private static SortedList<string, ResourceData> VerifyResourceNames( 715Dictionary<String, ResourceData> resourceList, 722new SortedList<string, ResourceData>(StringComparer.InvariantCultureIgnoreCase) 727foreach (KeyValuePair<String, ResourceData> entry in resourceList) 778ResourceData value = entry.Value;