Because you are making live tiles for your app, you need to reference the runtime components. After the production, ready to pack and upload the store, but in the packaging of the compilation, there is a strange problem, vs always packaging failed, hint: The manifest refers to a file that is not part of the load "Xx.dll". Click the error and not jump to the wrong place. It's strange. After a long time did not understand how, finally, the total online search, keep searching, finally found a Chen Rensong teacher's article: http://www.songsong.org/post/2015/09/30/81.html
Same as the problem I encountered.
The solution is as follows:
Open the project folder with Notepad, locate the file with the suffix: csproj, and open it. Where you find ItemGroup, add the following group below, in turn. where xx represents the wrong name of your project file. You can save it.
<
ItemGroup
>
<
AppxSystemBinary
Include
=
"xx.dll"
/>
</
ItemGroup
> Welcome to the students who love UWP development dabigatran: 193148992, learn to communicate together. --it Chase Dream Garden
VS2015 packaging hint list references files that are not part of the payload "Xx.dll" workaround