.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: enter image description here

so command makeappx pack /v /nc.


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -