WP7应用程序版本

发布于 2024-11-01 23:33:11 字数 254 浏览 1 评论 0 原文

Windows Phone 7 应用程序似乎有两个带有版本号的位置 - 一个位于 AssemblyInfo.cs 中(通过 AssemblyVersion/AssemblyFileVersion 属性),另一个位于 WMAppManifest.xml。这两者似乎不相关——改变一个不会影响另一个。市场似乎使用了清单中的内容 - 有人可以确认这一点吗?

真正的问题是 - 如何以编程方式从清单中检索该清单以显示在“关于”屏幕上?

A Windows Phone 7 app, it seems, has two places with version number - one in AssemblyInfo.cs (via AssemblyVersion/AssemblyFileVersion attributes), the other is WMAppManifest.xml. Those two seem uncorrelated - changing one does not affect the other. The Marketplace, it seems, uses the one from the manifest - can someone please confirm this?

The real question is - how do I retrieve the one from manifest programmatically to display on the About screen?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泪眸﹌ 2024-11-08 23:33:11

WmAppManifest.xml 编号正在使用中。前两位数字与 Marketplace 相关(更新时会检查),接下来的两位数字供您内部使用。

这是一个常规的 XML 文件,将其作为 XDocument 打开并解析它。 示例

编辑:这个例子是无关的。对于仅版本,请使用:

string Version = XDocument.Load("WMAppManifest.xml")
    .Root.Element("App").Attribute("Version").Value;

The WmAppManifest.xml number is in use. First two digits are relevant for Marketplace (it is checked when you do the update) next two are for your internal usage.

This is a regular XML file, open it as a XDocument and parse it. An example.

EDIT: the example is extraneous. For just the version, use:

string Version = XDocument.Load("WMAppManifest.xml")
    .Root.Element("App").Attribute("Version").Value;
花想c 2024-11-08 23:33:11

要从“WMappManifest.xml”获取应用程序版本,此解决方案可能比 lukas 解决方案更有效:

对于 WP7:

var xmlReaderSettings = new XmlReaderSettings
{
    XmlResolver = new XmlXapResolver()
};
using (var xmlReader = XmlReader.Create("WMAppManifest.xml", xmlReaderSettings))
{
    xmlReader.ReadToDescendant("App");
    return xmlReader.GetAttribute("Version");
}

对于 WP8:

using (var stream = new FileStream("WMAppManifest.xml", FileMode.Open, FileAccess.Read))
{
    string appVersion = XElement.Load(stream).Element("App").Attribute("Version").Value;
}

To get App Version from "WMappManifest.xml", this solution might be a bit more efficient than lukas solution:

For WP7:

var xmlReaderSettings = new XmlReaderSettings
{
    XmlResolver = new XmlXapResolver()
};
using (var xmlReader = XmlReader.Create("WMAppManifest.xml", xmlReaderSettings))
{
    xmlReader.ReadToDescendant("App");
    return xmlReader.GetAttribute("Version");
}

For WP8:

using (var stream = new FileStream("WMAppManifest.xml", FileMode.Open, FileAccess.Read))
{
    string appVersion = XElement.Load(stream).Element("App").Attribute("Version").Value;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文