3 instantiations of ResourceData
Microsoft.Build.Tasks.Core (3)
system.design\stronglytypedresourcebuilder.cs (3)
154? new ResourceData(liveObject.Value.GetType(), liveObject.Value.ToString()) 155: new ResourceData(resource.Value.TypeFullName, resource.Value.TypeAssemblyQualifiedName); 315var data = new ResourceData(type, valueAsString);
14 references to ResourceData
Microsoft.Build.Tasks.Core (14)
system.design\stronglytypedresourcebuilder.cs (14)
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) 305Dictionary<String, ResourceData> resourceList = new Dictionary<String, ResourceData>(StringComparer.InvariantCultureIgnoreCase); 315var data = new ResourceData(type, valueAsString); 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;