Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In C# one can use System.Version.Assembly to get the version of a running app. However this doesn't appear to exist in Silverlight for Windows Phone. Is there an alternative?

share|improve this question
1  
Time to accept some answers? – AnthonyWJones Sep 30 '10 at 19:13
@AnthonyWJones OK, now I understand your comment. You're saying henry hasn't accepted an answer for the questions he asks. – Walt Ritscher Oct 1 '10 at 2:17
i think some newbies don't figure out that they can accept an answer as correct... – John Gardner Oct 1 '10 at 16:32
1  
The answer works for silverlight but does not work on Windows Phone where version is not exposed. Instead, the solution is: String appVersion = System.Reflection.Assembly.GetExecutingAssembly().FullName.Split('=')[1].Split('‌​,')[0]; – henry Oct 13 '10 at 19:20

3 Answers

You can use the GetExecutingAssembly method and the AssemblyName class to find this information.


  var nameHelper = new AssemblyName(Assembly.GetExecutingAssembly().FullName);

  var version = nameHelper.Version;
  var full = nameHelper.FullName;
  var name = nameHelper.Name;

share|improve this answer
up vote 5 down vote accepted

On Phone 7 there is no clean way to get the version. The best thing to do is parse the Full Name (which is the only exposed property) for the version string:

String appVersion = System.Reflection.Assembly.GetExecutingAssembly().FullName.Split('=')[1].Split(',')[0];

share|improve this answer

First, I think it's more apt to use the assembly's file version info for conveying the application version to the user. See http://techblog.ranjanbanerji.com/post/2008/06/26/Net-Assembly-Vs-File-Versions.aspx

Second, what about doing this:

using System;
using System.Linq;
using System.Reflection;

public static class AssemblyExtensions
{
    public static Version GetFileVersion(this Assembly assembly)
    {
        var versionString = assembly.GetCustomAttributes(false)
            .OfType<AssemblyFileVersionAttribute>()
            .First()
            .Version;

        return Version.Parse(versionString);
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.