2013-07-01 37 views
0

當我嘗試從我的WPF應用程序創建Windows Store包時,我看到此錯誤: 「該文件不是有效的應用程序包因爲它缺少清單或塊地圖「該文件不是有效的應用程序包,因爲它缺少清單或塊地圖

我已經創建了一個AppxManifest.xml文件,但它仍然不起作用。

下面是我如何使用Makeappx.exe和控制檯輸出:

MakeAppx.exe pack /d .\ /p StoreAppTest1.appx 

Microsoft (R) MakeAppx Tool version 1.0.0.0 

Copyright (C) 2012 Microsoft. All rights reserved. 

The package path (/p) parameter is: "StoreAppTest1.appx" 

The content directory (/d) parameter is: ".\" 

Enumerating files from directory ".\" 

Packing 4 file(s) in ".\" (content directory) to "StoreAppTesame). 

MakeAppx : error: The package must contain a manifest. 

MakeAppx : error: Package creation failed. 

MakeAppx : error: 0x80080203 - The file is not a valid app pa 
missing a manifest or block map. 

MakeAppx : error: The specified package format is not valid. 

回答

0

嗯,首先,在AppManifest.xml文件必須是有效的,並根據此創建:http://msdn.microsoft.com/library/windows/apps/br211476.aspx,如果你只需要基本的,您可以在這裏閱讀快速入門:http://msdn.microsoft.com/en-us/library/windows/apps/br211475.aspx,但基本問題似乎是Windows應用商店不支持WPF應用程序,只支持Windows應用商店應用程序,所以這是不行的。

+0

您需要在Windows Store中註冊爲公司。只有公司被允許通過Windows商店分發桌面應用程序。 – Alexander

相關問題