2 instantiations of ResourceData
Microsoft.Build.Tasks.Core (2)
system.design\stronglytypedresourcebuilder.cs (2)
154? new ResourceData(liveObject.Value.GetType(), liveObject.Value.ToString()) 155: new ResourceData(resource.Value.TypeFullName, resource.Value.TypeAssemblyQualifiedName);
11 references to ResourceData
Microsoft.Build.Tasks.Core (11)
system.design\stronglytypedresourcebuilder.cs (11)
150var resourceTypes = new Dictionary<String, ResourceData>(StringComparer.InvariantCultureIgnoreCase); 153ResourceData data = resource.Value is LiveObjectResource liveObject 165private static CodeCompileUnit InternalCreate(Dictionary<String, ResourceData> resourceList, String baseName, String generatedCodeNamespace, String resourcesNamespace, CodeDomProvider codeProvider, bool internalClass, out SkippedResource[] unmatchable) 185SortedList<string, ResourceData> cleanedResourceList = VerifyResourceNames(resourceList, codeProvider, skippedResources, out Dictionary<string, string> reverseFixupTable); 267foreach (KeyValuePair<string, ResourceData> entry in cleanedResourceList) 549private static bool DefineResourceFetchingProperty(String propertyName, String resourceName, ResourceData data, CodeTypeDeclaration srClass, bool internalClass, bool useStatic) 743private static SortedList<string, ResourceData> VerifyResourceNames( 744Dictionary<String, ResourceData> resourceList, 751new SortedList<string, ResourceData>(StringComparer.InvariantCultureIgnoreCase) 756foreach (KeyValuePair<String, ResourceData> entry in resourceList) 814ResourceData value = entry.Value;