UWP .appinstaller - "解析应用程序包时出错。"

时间:2018-05-23 09:51:48

标签: c# xamarin uwp

我创建了一个.appinstaller XML文件,其中包含我的UWP包的详细信息,并将其链接到用户可以安装的网页。出于某种原因,这给我一个错误,即#34;解析应用程序包时出错。"在尝试安装App时。我按照https://docs.microsoft.com/en-us/windows/uwp/packaging/install-related-set

中提到的步骤进行了操作

以下是用于创建.appinstaller的xml。任何想法,我可能会失踪?

<?xml version="1.0" encoding="utf-8"?>
<AppInstaller
    xmlns="http://schemas.microsoft.com/appx/appinstaller/2017"
    Version="1.0.0.0" 
    Uri="http://mywebservice.azurewebsites.net/APP_UWP.appinstaller" > 

    <MainBundle 
        Name="MainApp"
        Publisher="CN=EGSolutions"
        Version="1.0.0.0"
        Uri="http://mywebservice.azurewebsites.net/EGClockingXamarin.UWP_1.0.8.0_x86_x64_arm_Debug.appxbundle" />

    <Dependencies>
        <Package Name="Microsoft.NET.CoreRuntime.2.1" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" Version="14.0.24605.0" ProcessorArchitecture="x86" Uri="http://foobarbaz.com/Microsoft.NET.CoreRuntime.2.1.appx" />
        <Package Name="Microsoft.VCLibs.ARM.Debug.14.00" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" Version="14.0.24605.0" ProcessorArchitecture="x64" Uri="http://foobarbaz.com/Microsoft.VCLibs.ARM.Debug.14.00.appx" />
    </Dependencies>

</AppInstaller>

0 个答案:

没有答案