编译时出现Microsoft Universal app bundle错误

时间:2014-11-25 04:58:31

标签: sqlite azure universal

我正在构建包含SqLiteStore的通用应用。我得到这个奇怪的错误包括拼写错误。 SQLite不允许我选择AnyCPU所以我是一个难题。关于在哪里看的任何想法?

错误APPX3104:在构建平台“x86”时无法创建应用程序包,该平台未包含在为产品应用程序包选择的平台列表中。将platform设置为以下值之一:AnyCPU。

1 个答案:

答案 0 :(得分:2)

我相信支持的平台列表由AppxBundlePlatforms属性设置。尝试这样的事情:

msbuild Foo.sln / p:Platform = x86; PlatformTarget = x86; Configuration = Release; AppxBundle = Always; AppxBundlePlatforms = x86

有关详细信息,请参阅:https://stackoverflow.com/a/29353229/67824