9 references to XmlInputPaths
Microsoft.Build.Tasks.Core (9)
XslTransformation.cs (9)
131
AbsolutePath?[] absoluteXmlInputPaths =
XmlInputPaths
!= null
132
? Array.ConvertAll(
XmlInputPaths
, item => item.ItemSpec != null ? TaskEnvironment.GetAbsolutePath(item.ItemSpec) : (AbsolutePath?)null)
146
if (
XmlInputPaths
!= null &&
XmlInputPaths
.Length != _outputPaths.Length)
148
Log.LogErrorWithCodeFromResources("General.TwoVectorsMustHaveSameLength", _outputPaths.Length,
XmlInputPaths
.Length, "OutputPaths", "XmlInputPaths");
230
string currentInputPath =
XmlInputPaths
?[currentXmlInputIndex]?.ItemSpec;
251
string offendingPath =
XmlInputPaths
?[currentXmlInputIndex]?.ItemSpec ?? string.Empty;
265
for (int i = 0; i <
XmlInputPaths
.Length; i++)
267
XmlInputPaths
[i].CopyMetadataTo(_outputPaths[i]);