1 write to _outputPaths
Microsoft.Build.Tasks.Core (1)
9 references to _outputPaths
Microsoft.Build.Tasks.Core (9)
XslTransformation.cs (9)
81ArgumentNullException.ThrowIfNull(_outputPaths, "OutputPath");
82return _outputPaths;
110ArgumentNullException.ThrowIfNull(_outputPaths, "OutputPath");
130if (XmlInputPaths != null && XmlInputPaths.Length != _outputPaths.Length)
132Log.LogErrorWithCodeFromResources("General.TwoVectorsMustHaveSameLength", _outputPaths.Length, XmlInputPaths.Length, "OutputPaths", "XmlInputPaths");
137if (XmlContent != null && _outputPaths.Length != 1)
139Log.LogErrorWithCodeFromResources("General.TwoVectorsMustHaveSameLength", _outputPaths.Length, 1, "OutputPaths", "XmlContent");
184using (XmlWriter xmlWriter = XmlWriter.Create(TaskEnvironment.GetAbsolutePath(_outputPaths[i].ItemSpec), xslct.OutputSettings))
206XmlInputPaths[i].CopyMetadataTo(_outputPaths[i]);