- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
问题:
如何让 MSIX appinstaller
在每次构建/发布期间输出正确的设置?
上下文:
我正在运行:
MSIX Windows 目标设置如下:
MSIX 安装程序项目会创建无效的 appinstaller
文件,这会阻止应用程序在每次运行时自动检查更新。我可以在每次构建/发布后手动更改文件,但我认为我不应该这样做,因为这似乎既弄巧成拙又错误。
一般来说,我几乎会忽略每次创建appinstaller
,但文件会自动递增版本号。因此,我目前似乎陷入了某种形式的手动干预,要么更改 schema version
和 UpdateSettings
部分,要么更新路径中的版本。这可能与运行 Visual Studio Community 版本有关吗?我需要专业人士才能使其正常工作吗?
Visual Studio 创建的应用程序安装程序,这是错误的:
<?xml version="1.0" encoding="utf-8"?>
<AppInstaller
Uri="https://<AppService>.azurewebsites.net/<AppName>.Setup.appinstaller"
Version="<AppVersion>" xmlns="http://schemas.microsoft.com/appx/appinstaller/2017/2">
<MainBundle
Name="<SomeGuid>"
Version="<AppVersion>"
Publisher="CN=<CertificateName>"
Uri="https://<AppService>.azurewebsites.net/<AppName>.Setup_<AppVersion>_Development_Test/<AppName>.Setup_<AppVersion>_x64_Development.msixbundle" />
<UpdateSettings>
<OnLaunch
HoursBetweenUpdateChecks="0" />
</UpdateSettings>
</AppInstaller>
我需要 Visual Studio 创建的应用程序安装程序:
<?xml version="1.0" encoding="utf-8"?>
<AppInstaller
Uri="https://<AppService>.azurewebsites.net/<AppName>.Setup.appinstaller"
Version="<AppVersion>" xmlns="http://schemas.microsoft.com/appx/appinstaller/2018">
<MainBundle
Name="<SomeGuid>"
Version="<AppVersion>"
Publisher="<CertificateName>"
Uri="https://<AppService>.azurewebsites.net/<AppName>.Setup_<AppVersion>_Development_Test/<AppName>.Setup_<AppVersion>_x64_Development.msixbundle" />
<UpdateSettings>
<OnLaunch
HoursBetweenUpdateChecks="0"
ShowPrompt="true"
UpdateBlocksActivation="true" />
<AutomaticBackgroundTask />
<ForceUpdateFromAnyVersion>true</ForceUpdateFromAnyVersion>
</UpdateSettings>
</AppInstaller>
最佳答案
我们解决了即使启用了侧面加载,应用程序也不检查自动更新的问题。我们需要向应用程序安装程序类型的 MSIX 项目添加一个附加项。这将创建默认文件名 Package.appinstaller*。此文件提供 appinstaller 文件的配置设置,需要这些设置才能控制所有可用设置,包括 UpdateSettings 部分。
应用程序安装程序允许的一些附加功能是阻止用户在不更新的情况下运行应用程序。这是 ClickOnce 发布配置文件的一个问题,因为它为用户提供了跳过更新的选项;我们无法找到防止这种情况发生的方法。不过,MSIX 应用安装程序允许控制此行为。
*请勿重命名此文件,因为构建/发布实用程序不会选择它并将设置应用到 APPINSTALLER 文件。这似乎是一个错误/静态文件引用。
Package.appinstaller
<?xml version="1.0" encoding="utf-8"?>
<AppInstaller Uri="{AppInstallerUri}"
Version="{Version}"
xmlns="http://schemas.microsoft.com/appx/appinstaller/2018">
<MainBundle Name="{Name}"
Version="{Version}"
Publisher="{Publisher}"
Uri="{MainPackageUri}"/>
<UpdateSettings>
<OnLaunch
HoursBetweenUpdateChecks="0"
ShowPrompt="true"
UpdateBlocksActivation="true" />
<AutomaticBackgroundTask />
<ForceUpdateFromAnyVersion>true</ForceUpdateFromAnyVersion>
</UpdateSettings>
</AppInstaller>
引用文献:
其他引用资料:
关于wpf - 如何让 MSIX 应用安装程序在每次生成/发布期间输出正确的设置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67285329/
我是一名优秀的程序员,十分优秀!