Implemented interface member:

property
ItemSpec
Microsoft.Build.Framework.ITaskItem.ItemSpec
37 writes to ItemSpec
Crossgen2Tasks (6)
Microsoft.Build.Tasks.Core (6)
Microsoft.Build.Tasks.UnitTests (5)
Microsoft.Build.Utilities.Core (1)
Microsoft.Build.Utilities.UnitTests (13)
Microsoft.DotNet.XliffTasks (2)
PresentationBuildTasks (4)
46 references to ItemSpec
Microsoft.Build.Tasks.UnitTests (32)
XslTransformation_Tests.cs (26)
806string xmlInputPath = xmlPaths[0].ItemSpec;
809string xslInputPath = xslPath.ItemSpec;
951using (StreamWriter sw = new StreamWriter(otherXmlPath.ItemSpec, false))
960TaskItem[] outputMultiPaths = new TaskItem[] { new TaskItem(outputPaths[0].ItemSpec + ".1.xml"),
961new TaskItem(outputPaths[0].ItemSpec + ".2.xml"), new TaskItem(outputPaths[0].ItemSpec + ".3.xml"), new TaskItem(outputPaths[0].ItemSpec + ".4.xml") };
972Assert.True(File.Exists(tsk.ItemSpec), tsk.ItemSpec + " should exist on output dir");
977Assert.NotEqual(new FileInfo(xmlMultiPaths[0].ItemSpec).Length, new FileInfo(xmlMultiPaths[1].ItemSpec).Length);
978Assert.NotEqual(new FileInfo(outputMultiPaths[0].ItemSpec).Length, new FileInfo(outputMultiPaths[1].ItemSpec).Length);
1003TaskItem[] outputMultiPathsShort = new TaskItem[] { new TaskItem(outputPaths[0].ItemSpec + ".1.xml"),
1004new TaskItem(outputPaths[0].ItemSpec + ".2.xml"),
1005new TaskItem(outputPaths[0].ItemSpec + ".3.xml") };
1007TaskItem[] outputMultiPathsLong = new TaskItem[] { new TaskItem(outputPaths[0].ItemSpec + ".1.xml"),
1008new TaskItem(outputPaths[0].ItemSpec + ".2.xml"),
1009new TaskItem(outputPaths[0].ItemSpec + ".3.xml"),
1010new TaskItem(outputPaths[0].ItemSpec + ".4.xml"),
1011new TaskItem(outputPaths[0].ItemSpec + ".5.xml") };
1052using (StreamWriter sw = new StreamWriter(otherXslPath.ItemSpec, false))
1059using (StreamWriter sw = new StreamWriter(myXmlPath1.ItemSpec, false))
1066using (StreamWriter sw = new StreamWriter(myXmlPath2.ItemSpec, false))
1115using (StreamWriter sw = new StreamWriter(xmlPaths[0].ItemSpec, false))
1121using (StreamWriter sw = new StreamWriter(xslPath.ItemSpec, false))
Microsoft.Build.Utilities.Core (3)
Microsoft.Build.Utilities.UnitTests (3)
Microsoft.DotNet.Build.Tasks.Feed.Tests (2)
Microsoft.DotNet.Build.Tasks.Packaging (2)
PresentationBuildTasks (4)