gpt4 book ai didi

c# - 为商店 : "Manifest references file ' MyAppName. dll 构建通用应用程序时出错,它不是有效负载的一部分。”

转载 作者:太空狗 更新时间:2023-10-29 18:08:11 31 4
gpt4 key购买 nike

尝试为 Windows 通用应用程序的商店创建应用程序包时,我在 Visual Studio 2015 中遇到此错误:

Manifest references file 'MyAppName.dll' which is not part of the payload.

错误在 ...\..MyAppSourcePath..\Package.appxmanifest 文件中。

这在某种程度上是相关的 Manifest references file 'Bing.Maps.dll' which is not part of the payload但在我的例子中,只有在为商店构建包并且与 MyAppName.dll 相关时才会出现错误(其中 MyAppName 是我的应用程序的名称) .

MSDN 中的另一个相关问题:https://social.msdn.microsoft.com/Forums/en-US/f137091e-f550-4eab-b7e2-418149b97d40/error-appx0703-manifest-references-file-myappnamedll-which-is-not-part-of-the-payload?forum=windowsstore

最佳答案

原来这是 Windows 10 SDK(更新 1.1)中的已知问题。引用:https://social.msdn.microsoft.com/Forums/en-US/73f2d56d-9e8e-4b57-bcfa-0a972dfd75d7/update-11-generating-store-associated-package-fails-for-a-uwp-application-with-a-winrt-component?forum=Win10SDKToolsIssues

要解决此问题,请在您的项目文件中添加以下 ItemGroup 并重新生成包。

<ItemGroup>
<AppxSystemBinary Include="<Assembly Mentioned in the error>" />
</ItemGroup>

例如,如果程序集名称是 MyAppName.dll,则包括:

<ItemGroup>
<AppxSystemBinary Include="MyAppName.dll" />
</ItemGroup>

这个ItemGroup可以展开,如果其他程序集仍然出现错误,例如:

<ItemGroup>
<AppxSystemBinary Include="MyAppName.dll" />
<AppxSystemBinary Include="OtherAssembly.dll" />
</ItemGroup>

关于c# - 为商店 : "Manifest references file ' MyAppName. dll 构建通用应用程序时出错,它不是有效负载的一部分。”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32697674/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com