将 UWP 应用程序打包为 APPX 时控制 html 文件的压缩
Control compression of html file when packaging UWP app as an APPX
我正在查找有关如何使用 makeappx.exe 工具更改 HTML 文件压缩的文档 https://msdn.microsoft.com/en-us/library/windows/desktop/hh446767(v=vs.85).aspx
当 运行 makeappx pack /v 时,我可以在日志中看到如下内容:
Settings for extension html: Type = text/html, Compression = Normal.
Adding "C:\SNIP\Content\StartPage.html" to the package as a payload file. Its path in the package is "Content\StartPage.html".
我想做的是将压缩设置为 "None"。 (因为它正在删除 Cariage returns 并破坏 StartPage.html 中的 Mark-Of-The-Web。)不过我找不到任何关于如何执行此操作的文档。谢谢!
What I'd like is to do is set the Compression to "None".
如果您键入 makeappx pack /?
,您会看到有一个 /nc
选项,它将阻止该工具压缩文件:
因此命令将是 makeappx pack /v /nc
。
我正在查找有关如何使用 makeappx.exe 工具更改 HTML 文件压缩的文档 https://msdn.microsoft.com/en-us/library/windows/desktop/hh446767(v=vs.85).aspx
当 运行 makeappx pack /v 时,我可以在日志中看到如下内容:
Settings for extension html: Type = text/html, Compression = Normal.
Adding "C:\SNIP\Content\StartPage.html" to the package as a payload file. Its path in the package is "Content\StartPage.html".
我想做的是将压缩设置为 "None"。 (因为它正在删除 Cariage returns 并破坏 StartPage.html 中的 Mark-Of-The-Web。)不过我找不到任何关于如何执行此操作的文档。谢谢!
What I'd like is to do is set the Compression to "None".
如果您键入 makeappx pack /?
,您会看到有一个 /nc
选项,它将阻止该工具压缩文件:
因此命令将是 makeappx pack /v /nc
。