15 writes to XmlInputPaths
Microsoft.Build.Tasks.UnitTests (15)
XslTransformation_Tests.cs (15)
127
t.
XmlInputPaths
= (TaskItem[])xmlValue;
188
t.
XmlInputPaths
= (TaskItem[])xmlValue;
305
t.
XmlInputPaths
= xmlPaths;
499
t.
XmlInputPaths
= xmlPaths;
623
t.
XmlInputPaths
= xmlPaths;
651
t.
XmlInputPaths
= xmlPaths;
679
t.
XmlInputPaths
= xmlPaths;
802
t.
XmlInputPaths
= xmlPaths;
875
t.
XmlInputPaths
= xmlPaths;
967
t.
XmlInputPaths
= xmlMultiPaths;
1018
t.
XmlInputPaths
= xmlMultiPaths;
1030
t.
XmlInputPaths
= xmlMultiPaths;
1076
t.
XmlInputPaths
= new TaskItem[] { myXmlPath1 };
1086
t.
XmlInputPaths
= new TaskItem[] { myXmlPath1 };
1316
t2.
XmlInputPaths
= xmlPathsWithNull;
8 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]);
Microsoft.Build.Tasks.UnitTests (1)
XslTransformation_Tests.cs (1)
308
Assert.Equal(xmlPaths, t.
XmlInputPaths
);