Have you tried retreiving the version number from the current Assembly  in Windows Phone 7? You might get the Assembly version in .NET something like this
Version assemblyVersion = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
From the above assembly snippet , we get the Major , Minor , Build and Revision from the assemblyVersion . But Read More →