12 references to assemblyFile
Microsoft.Build (12)
Construction\ProjectUsingTaskElement.cs (6)
52
GetAttributeValue(XMakeAttributes.
assemblyFile
));
57
ErrorUtilities.VerifyThrowInvalidOperation(String.IsNullOrEmpty(AssemblyName), "OM_EitherAttributeButNotBoth", ElementName, XMakeAttributes.
assemblyFile
, XMakeAttributes.assemblyName);
59
SetOrRemoveAttribute(XMakeAttributes.
assemblyFile
, value, "Set usingtask AssemblyFile {0}", value);
74
ErrorUtilities.VerifyThrowInvalidOperation(String.IsNullOrEmpty(AssemblyFile), "OM_EitherAttributeButNotBoth", XMakeElements.usingTask, XMakeAttributes.
assemblyFile
, XMakeAttributes.assemblyName);
177
public ElementLocation AssemblyFileLocation => GetAttributeLocation(XMakeAttributes.
assemblyFile
);
238
XMakeAttributes.
assemblyFile
,
Evaluation\ProjectParser.cs (4)
51
private static readonly HashSet<string> ValidAttributesOnUsingTask = new HashSet<string> { XMakeAttributes.condition, XMakeAttributes.label, XMakeAttributes.taskName, XMakeAttributes.
assemblyFile
, XMakeAttributes.assemblyName, XMakeAttributes.taskFactory, XMakeAttributes.architecture, XMakeAttributes.runtime, XMakeAttributes.requiredPlatform, XMakeAttributes.requiredRuntime, XMakeAttributes.overrideUsingTask };
514
string assemblyFile = element.GetAttribute(XMakeAttributes.
assemblyFile
);
522
XMakeAttributes.
assemblyFile
);
525
ProjectXmlUtilities.VerifyThrowProjectAttributeEitherMissingOrNotEmpty(element, XMakeAttributes.
assemblyFile
);
Instance\TaskRegistry.cs (2)
350
XMakeAttributes.
assemblyFile
,
420
ProjectErrorUtilities.ThrowInvalidProject(projectUsingTaskXml.Location, "InvalidAttributeValueWithException", assemblyFile, XMakeAttributes.
assemblyFile
, XMakeElements.usingTask, ex.Message);