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);
315
var data = new
ResourceData
(type, valueAsString);
14 references to ResourceData
Microsoft.Build.Tasks.Core (14)
system.design\stronglytypedresourcebuilder.cs (14)
150
var resourceTypes = new Dictionary<String,
ResourceData
>(StringComparer.InvariantCultureIgnoreCase);
153
ResourceData
data = resource.Value is LiveObjectResource liveObject
165
private static CodeCompileUnit InternalCreate(Dictionary<String,
ResourceData
> resourceList, String baseName, String generatedCodeNamespace, String resourcesNamespace, CodeDomProvider codeProvider, bool internalClass, out SkippedResource[] unmatchable)
185
SortedList<string,
ResourceData
> cleanedResourceList = VerifyResourceNames(resourceList, codeProvider, skippedResources, out Dictionary<string, string> reverseFixupTable);
267
foreach (KeyValuePair<string,
ResourceData
> entry in cleanedResourceList)
305
Dictionary<String,
ResourceData
> resourceList = new Dictionary<String,
ResourceData
>(StringComparer.InvariantCultureIgnoreCase);
315
var
data = new ResourceData(type, valueAsString);
549
private static bool DefineResourceFetchingProperty(String propertyName, String resourceName,
ResourceData
data, CodeTypeDeclaration srClass, bool internalClass, bool useStatic)
743
private static SortedList<string,
ResourceData
> VerifyResourceNames(
744
Dictionary<String,
ResourceData
> resourceList,
751
new SortedList<string,
ResourceData
>(StringComparer.InvariantCultureIgnoreCase)
756
foreach (KeyValuePair<String,
ResourceData
> entry in resourceList)
814
ResourceData
value = entry.Value;