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