Windows phone: how get current application id

c#, marketplace, windows-phone-7

Solution

try this : `var appId = Windows.ApplicationModel.Store.CurrentApp.AppId;` it's documentation here

Problem

Is there any way to get ID of my application in app store without hardcode? I need to use this value it self, so this way http://forums.create.msdn.com/forums/p/88847/533072.aspx will not help.

Original source