15 writes to XmlInputPaths
Microsoft.Build.Tasks.UnitTests (15)
XslTransformation_Tests.cs (15)
127t.XmlInputPaths = (TaskItem[])xmlValue; 188t.XmlInputPaths = (TaskItem[])xmlValue; 305t.XmlInputPaths = xmlPaths; 499t.XmlInputPaths = xmlPaths; 623t.XmlInputPaths = xmlPaths; 651t.XmlInputPaths = xmlPaths; 679t.XmlInputPaths = xmlPaths; 802t.XmlInputPaths = xmlPaths; 875t.XmlInputPaths = xmlPaths; 967t.XmlInputPaths = xmlMultiPaths; 1018t.XmlInputPaths = xmlMultiPaths; 1030t.XmlInputPaths = xmlMultiPaths; 1076t.XmlInputPaths = new TaskItem[] { myXmlPath1 }; 1086t.XmlInputPaths = new TaskItem[] { myXmlPath1 }; 1316t2.XmlInputPaths = xmlPathsWithNull;
8 references to XmlInputPaths
Microsoft.Build.Tasks.Core (7)
XslTransformation.cs (7)
112AbsolutePath?[] absoluteXmlInputPaths = XmlInputPaths != null 113? Array.ConvertAll(XmlInputPaths, item => item.ItemSpec != null ? TaskEnvironment.GetAbsolutePath(item.ItemSpec) : (AbsolutePath?)null) 127if (XmlInputPaths != null && XmlInputPaths.Length != _outputPaths.Length) 129Log.LogErrorWithCodeFromResources("General.TwoVectorsMustHaveSameLength", _outputPaths.Length, XmlInputPaths.Length, "OutputPaths", "XmlInputPaths"); 201for (int i = 0; i < XmlInputPaths.Length; i++) 203XmlInputPaths[i].CopyMetadataTo(_outputPaths[i]);
Microsoft.Build.Tasks.UnitTests (1)
XslTransformation_Tests.cs (1)
308Assert.Equal(xmlPaths, t.XmlInputPaths);