.net - Control compression of html file when packaging UWP app as an APPX -
i'm looking documentation how change compression html files using makeappx.exe tool https://msdn.microsoft.com/en-us/library/windows/desktop/hh446767(v=vs.85).aspx
when running makeappx pack /v can see in logs like:
settings extension html: type = text/html, compression = normal. adding "c:\snip\content\startpage.html" package payload file. path in package "content\startpage.html".
what i'd set compression "none". (because it's removing cariage returns , corrupting mark-of-the-web in startpage.html.) can't find documentation how though. thanks!
what i'd set compression "none".
if type makeappx pack /?
see there /nc
option, prevent tool compressing files:
so command makeappx pack /v /nc
.
Comments
Post a Comment