适用于通用Windows Apps 1.1的VS Tools不再能够创建应用程序包

时间:2015-09-21 06:48:10

标签: visual-studio-2015 uwp

我将VS20154升级到适用于通用Windows应用程序的Visual Studio工具。本地构建在debugg配置中工作正常。但是,当我尝试创建应用程序包时,我收到此错误:

严重性代码说明项目文件行

Manifest references file 'MoneyManager.Windows.dll' which is not part of the payload.   MoneyManager.Windows    C:\Users\ninop\Documents\GitHub\MoneyManager\Src\MoneyManager.Windows\Package.appxmanifest  

有没有人知道如何解决这个问题?

由于 NPadrutt

1 个答案:

答案 0 :(得分:1)

MSDN论坛上似乎有一个答案:

  

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

     

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

     

例如,如果程序集名称为App1.dll,则包括:

     

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

来自: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