1 write to _outputPaths
Microsoft.Build.Tasks.Core (1)
9 references to _outputPaths
Microsoft.Build.Tasks.Core (9)
XslTransformation.cs (9)
73ErrorUtilities.VerifyThrowArgumentNull(_outputPaths, "OutputPath");
74return _outputPaths;
100ErrorUtilities.VerifyThrowArgumentNull(_outputPaths, "OutputPath");
115if (XmlInputPaths != null && XmlInputPaths.Length != _outputPaths.Length)
117Log.LogErrorWithCodeFromResources("General.TwoVectorsMustHaveSameLength", _outputPaths.Length, XmlInputPaths.Length, "OutputPaths", "XmlInputPaths");
122if (XmlContent != null && _outputPaths.Length != 1)
124Log.LogErrorWithCodeFromResources("General.TwoVectorsMustHaveSameLength", _outputPaths.Length, 1, "OutputPaths", "XmlContent");
169using (XmlWriter xmlWriter = XmlWriter.Create(_outputPaths[i].ItemSpec, xslct.OutputSettings))
193XmlInputPaths[i].CopyMetadataTo(_outputPaths[i]);