1 write to _outputPaths
Microsoft.Build.Tasks.Core (1)
XslTransformation.cs (1)
84set => _outputPaths = value;
9 references to _outputPaths
Microsoft.Build.Tasks.Core (9)
XslTransformation.cs (9)
80ErrorUtilities.VerifyThrowArgumentNull(_outputPaths, "OutputPath"); 81return _outputPaths; 107ErrorUtilities.VerifyThrowArgumentNull(_outputPaths, "OutputPath"); 127if (XmlInputPaths != null && XmlInputPaths.Length != _outputPaths.Length) 129Log.LogErrorWithCodeFromResources("General.TwoVectorsMustHaveSameLength", _outputPaths.Length, XmlInputPaths.Length, "OutputPaths", "XmlInputPaths"); 134if (XmlContent != null && _outputPaths.Length != 1) 136Log.LogErrorWithCodeFromResources("General.TwoVectorsMustHaveSameLength", _outputPaths.Length, 1, "OutputPaths", "XmlContent"); 181using (XmlWriter xmlWriter = XmlWriter.Create(TaskEnvironment.GetAbsolutePath(_outputPaths[i].ItemSpec), xslct.OutputSettings)) 203XmlInputPaths[i].CopyMetadataTo(_outputPaths[i]);