6 references to ValueTypeParser
Microsoft.Build (2)
BackEnd\TaskExecutionHost\TaskExecutionHost.cs (2)
832return ValueTypeParser.Parse(value, targetType); 1007stringOutputs[i] = ValueTypeParser.ToString(output);
Microsoft.Build.Framework (4)
TaskItem_T.cs (4)
18/// The identity (ItemSpec) is parsed using <see cref="ValueTypeParser"/> which handles value types, 39string itemSpec = ValueTypeParser.ToString(value); 81private static T ParseValue(string value) => (T)ValueTypeParser.Parse(value, typeof(T)); 87private string ValueToString() => ValueTypeParser.ToString(Value);