예제 #1
0
        public string AppVersion()
        {
            ApplicationManifestService manifest = new ApplicationManifestService();


            return(manifest.GetApplicationManifest().App.Version);
        }
예제 #2
0
        private static void SetFlurry()
        {
            FlurryWP8SDK.Api.StartSession(Constants.FlurryKey);
            var version = new ApplicationManifestService().GetApplicationManifest().App.Version;

            FlurryWP8SDK.Api.SetVersion(version);
        }
        /// <summary>
        /// The about_ loaded.
        /// </summary>
        /// <param name="sender">
        /// The sender.
        /// </param>
        /// <param name="e">
        /// The e.
        /// </param>
        private void AboutLoaded(object sender, RoutedEventArgs e)
        {
            var applicationManifestService = new ApplicationManifestService();

            _applicationMnifest = applicationManifestService.GetApplicationManifest();
        }