7 references to XmlInputPaths
Microsoft.Build.Tasks.Core (7)
XslTransformation.cs (7)
112
AbsolutePath?[] absoluteXmlInputPaths =
XmlInputPaths
!= null
113
? Array.ConvertAll(
XmlInputPaths
, item => item.ItemSpec != null ? TaskEnvironment.GetAbsolutePath(item.ItemSpec) : (AbsolutePath?)null)
127
if (
XmlInputPaths
!= null &&
XmlInputPaths
.Length != _outputPaths.Length)
129
Log.LogErrorWithCodeFromResources("General.TwoVectorsMustHaveSameLength", _outputPaths.Length,
XmlInputPaths
.Length, "OutputPaths", "XmlInputPaths");
201
for (int i = 0; i <
XmlInputPaths
.Length; i++)
203
XmlInputPaths
[i].CopyMetadataTo(_outputPaths[i]);