emerbrito / ILMerge-MSBuild-Task

Adds ILMerge to Visual Studio 2013/2017 or automated builds. This Task is intended to work right out of the box however, it supports a configuration file where you can control every ILMerge property including the list of assemblies to be merged.
MIT License
54 stars 15 forks source link

wiki - Content string escape #19

Closed pzhlkj6612 closed 5 years ago

pzhlkj6612 commented 6 years ago

The table in Escaping Content # Config File · emerbrito/ILMerge-MSBuild-Task Wiki · GitHub:

Original Path Escaped Path
C:\MyFolder\MyLib.dll C:\MyFolder\MyLib.dll

should be,

Original Path Escaped Path
C:\MyFolder\MyLib.dll C:\\MyFolder\\MyLib.dll

Well, raw content (C:\\\\MyFolder\\\\MyLib.dll) will look strange because of the string escape rule of Markdown.

emerbrito commented 5 years ago

Good catch, thank you.

emerbrito commented 5 years ago

Documentation updated. Fixed.