Hello
While creating project with task who inside summary got comma, MPX export crush.
Fileformat.com documentation:
- If the list separator character, usually a comma or semicolon, is included in a field, for example, to separate predecessors, the field is enclosed in quotation marks.
-
Steps to reproduce:
Project project = new Project(); Task task = project.getRootTask().getChildren().add("Summary"); Task subtask = task.getChildren().add("Subtask, with comma");` project.save("./project.mpx", SaveFileFormat.MPX);
-
MPX format:
70,Subtask, with comma,1.1,2, ...
-
expected MPX format:
70,"Subtask, with comma",1.1,2, ...