2

当我尝试从我的 WPF 应用程序创建 Windows 商店包时,我看到此错误: “该文件不是有效的应用程序包,因为它缺少清单或块映射”

我创建了一个 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.
4

1 回答 1

1

好吧,首先,AppManifest.xml 文件必须是有效的,并且根据这个创建:http: //msdn.microsoft.com/library/windows/apps/br211476.aspx,如果你只需要基本的,你可以阅读快速从这里开始:http: //msdn.microsoft.com/en-us/library/windows/apps/br211475.aspx,但根本问题似乎是Windows Store不支持WPF应用程序,只有Windows Store应用程序支持那里支持,所以这是不行的。

于 2013-07-01T19:21:18.637 回答