Maximus5 / conemu-inside

An example, how to embed http://conemu.github.io/ into another graphical application
57 stars 42 forks source link

GetInfo Root Returns Malformed XML #11

Closed hypersw closed 8 years ago

hypersw commented 8 years ago
<Root   "Name"="cmd.exe"/>
Name cannot begin with the '"' character, hexadecimal value 0x22. Line 1, position 7.

Should be:

<Root   Name="cmd.exe"/>
hypersw commented 8 years ago

Same with runtime value:

<Root
    "Name"="cmd.exe"
    "Running": true
    "PID""2828"
    "ExitCode""259"
    "UpTime"="67938"
/>
Maximus5 commented 8 years ago

https://conemu.github.io/blog/2016/01/11/Build-160111.html

hypersw commented 8 years ago

Confirmed, using the regular parser now.