0

我有一个已打包到 MSIX 包中的 WPF 桌面应用程序。在包清单中,我定义了一个 windows.protocol 扩展,用于在使用特定协议时启动主可执行文件。当我直接使用 MSIX 包安装时,此协议激活工作正常。应用程序应该是自动更新的,所以我创建了一个引用 MSIX 的 .appinstaller 文件。这也很好用,但是当使用 .appinstaller 文件安装应用程序时,协议激活不起作用。事实上,当使用自定义协议时,Windows 会提示应用程序。我没有以任何方式更改 MSIX 包,只是引用了它。MSIX 包使用购买的有效签名证书进行签名。

有问题的协议提供了用户可以使用电子邮件共享的应用程序的深层链接。目前,我必须选择激活协议(直接安装 MSIX)或自动更新(使用 .appinstaller 文件安装),但我无法同时工作。

应用清单.xml

<?xml version="1.0" encoding="utf-8"?>
<Package
  xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
  xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
  xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
  xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
  IgnorableNamespaces="uap uap3 rescap">
  <Identity
    Name="MyApp"
    Publisher="CN=CompanyName, O=CompanyName, L=City, S=Province, C=BE"
    Version="1.0.0.0"
    ProcessorArchitecture="x64"/>

  <Properties>
    <DisplayName>MyApp</DisplayName>
    <PublisherDisplayName>CompanyName</PublisherDisplayName>
    <Logo>Images\StoreLogo.png</Logo>
  </Properties>

  <Dependencies>
    <TargetDeviceFamily Name="MSIXCore.Desktop" MinVersion="6.1.7601.0" MaxVersionTested="10.0.10240.0" />
    <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14393.0" MaxVersionTested="10.0.18362.0" />
  </Dependencies>

  <Resources>
    <Resource Language="en-us"/>
  </Resources>

  <Applications>
    <Application Id="App"
      Executable="MyApp\MyApp.exe"
      EntryPoint="Windows.FullTrustApplication">
      <uap:VisualElements
        DisplayName="MyApp"
        Description="MyApp"
        BackgroundColor="transparent"
        Square150x150Logo="Images\Square150x150Logo.png"
        Square44x44Logo="Images\Square44x44Logo.png">
        <uap:DefaultTile Wide310x150Logo="Images\Wide310x150Logo.png" />
        <uap:SplashScreen Image="Images\SplashScreen.png" />
      </uap:VisualElements>
      <Extensions>
        <uap3:Extension Category="windows.protocol">
          <uap3:Protocol Name="myprotocol" Parameters="-s &quot;%1&quot;">
            <uap:DisplayName>MyProtocol Scheme</uap:DisplayName>
          </uap3:Protocol>
        </uap3:Extension>
      </Extensions>
    </Application>
  </Applications>

  <Capabilities>
    <Capability Name="internetClient" />
    <rescap:Capability Name="runFullTrust" />
    <Capability Name="privateNetworkClientServer"/>
    <uap:Capability Name="userAccountInformation"/>
  </Capabilities>
</Package>

myapp.appinstaller

<?xml version="1.0" encoding="utf-8"?>
<AppInstaller Uri="\\someserver\someshare\myapp.appinstaller" Version="1.0.0.0" xmlns="http://schemas.microsoft.com/appx/appinstaller/2018">
  <MainPackage Name="MyApp" Version="1.0.0.0" Publisher="CN=CompanyName, O=CompanyName, L=City, S=Province, C=BE" ProcessorArchitecture="x64" Uri="\\someserver\someshare\myapp.msix" />
  <UpdateSettings>
    <OnLaunch HoursBetweenUpdateChecks="0" ShowPrompt="true" UpdateBlocksActivation="true"/>
    <AutomaticBackgroundTask/>
  </UpdateSettings>
</AppInstaller>
4

0 回答 0