2016-03-05 37 views
0

我们开发了Windows Phone 8.1应用程序。我们无法创建应用程序包以在应用商店中上传。虽然试图创建应用程序包的应用程序商店,我们收到此错误:发生意外的网络错误。该应用程序列表无法刷新。请按刷新按钮重试

"An unexpected network error has occurred. The app list cannot be refreshed. Please retry by pressing the Refresh button"

我们在Windows 8.1中的企业操作系统使用Visual Studio 2013终极版&的Visual Studio社区版2015年。自从我们创建和支付我们的微软开发者帐户并且甚至无法发布我们的第一个应用以来,我们一直面临这个问题已经尝试了https://social.msdn.microsoft.com/Forums/windowsapps/en-US/cf578dab-79f2-46ab-a2aa-50a46041ea20/error-an-unexpected-network-error-has-occured-the-app-list-cannot-be-refreshed-please-retry-by?forum=windowsstore中提到的解决方法。它没有解决这个问题。请帮助解决这个问题。谢谢。

enter image description here

回答

0

我已经没有创造从项目菜单中的应用程序包解决了这个问题,即项目 - >销售 - >创建应用程序包。

相反,我通过使用Visual Studio命令工具创建的包:

msbuild WindowsPhoneProjectName.csproj /p:Platform=ARM;Configuration=Release

上传生成的APPX包存储和它工作完美:)

2

我也面临着同样的问题,我尝试了Mriganka Deka的回答。仍然无法解决问题,因为msbuild命令也给我错误。 尝试了很多东西后,我找到了解决我的问题的方法。

Just go to Project --> Store --> Create App Packages and when the wizard window appears, select 'No' instead of Yes option. That way Visual Studio generates your package file on the local machine and you can upload it to Microsoft Store.

我发布了这个答案,因为我无法在任何地方找到这个解决方案。希望它能帮助其他任何人面对这个问题。