1 write to _outputPaths
Microsoft.Build.Tasks.Core (1)
9 references to _outputPaths
Microsoft.Build.Tasks.Core (9)
XslTransformation.cs (9)
84ArgumentNullException.ThrowIfNull(_outputPaths, "OutputPath");
85return _outputPaths;
111ArgumentNullException.ThrowIfNull(_outputPaths, "OutputPath");
139if (XmlInputPaths != null && XmlInputPaths.Length != _outputPaths.Length)
141Log.LogErrorWithCodeFromResources("General.TwoVectorsMustHaveSameLength", _outputPaths.Length, XmlInputPaths.Length, "OutputPaths", "XmlInputPaths");
146if (XmlContent != null && _outputPaths.Length != 1)
148Log.LogErrorWithCodeFromResources("General.TwoVectorsMustHaveSameLength", _outputPaths.Length, 1, "OutputPaths", "XmlContent");
193using (XmlWriter xmlWriter = XmlWriter.Create(TaskEnvironment.GetAbsolutePath(_outputPaths[i].ItemSpec), xslct.OutputSettings))
215XmlInputPaths[i].CopyMetadataTo(_outputPaths[i]);