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;
118ArgumentNullException.ThrowIfNull(_outputPaths, "OutputPath");
146if (XmlInputPaths != null && XmlInputPaths.Length != _outputPaths.Length)
148Log.LogErrorWithCodeFromResources("General.TwoVectorsMustHaveSameLength", _outputPaths.Length, XmlInputPaths.Length, "OutputPaths", "XmlInputPaths");
153if (XmlContent != null && _outputPaths.Length != 1)
155Log.LogErrorWithCodeFromResources("General.TwoVectorsMustHaveSameLength", _outputPaths.Length, 1, "OutputPaths", "XmlContent");
209using (XmlWriter xmlWriter = XmlWriter.Create(TaskEnvironment.GetAbsolutePath(_outputPaths[i].ItemSpec), xslct.OutputSettings))
267XmlInputPaths[i].CopyMetadataTo(_outputPaths[i]);