AppManifest.xml 与 WMAppManifest.xml - Windows Phone 7 应用程序中的类库
在将我的第一个应用程序提交到 Windows Phone 7 Marketplace 之前,我想知道是否应该修改 AppManifest.xml 文件。
我的应用程序由两个程序集(应用程序 + 类库)组成,我想知道是否必须在 AppManifest 中使用 Deployment.Parts 才能通过认证过程。
有人有这方面的经验吗?
Before I submit my first app to the Windows Phone 7 Marketplace, I would like to know whether I should modify the AppManifest.xml file.
My app comprises of two assemblies (the app + class library) and I was wondering if I have to use Deployment.Parts in the AppManifest in order to pass the certification process.
Anybody has any experience with that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 Windows Phone 7 应用程序认证要求:
所以答案是肯定的 - 在将应用程序提交到 Marketplace 之前,您需要在 AppManifest.xml 中声明使用的程序集。
构建 XAP 包时,AppManifest.xaml 中会自动引用这些内容。但是,在 Visual Studio 中工作时,该文件将保持为空。
According to the Windows Phone 7 Application Certification Requirements:
So the answer would be yes - you need to declare the used assemblies in AppManifest.xml before submitting the application to the Marketplace.
These are referenced in AppManifest.xaml automatically when the XAP package is built. When working in Visual Studio, though, the file will remain empty.
除非出现问题,否则 Visual Studio 应该为您完成所有工作,并且您根本不需要修改此文件。
Unless something is going wrong then Visual Studio should do all the work for you and you should not need to modify this file at all.