Jason94
Jason94

Reputation: 13610

What is the GUID in my WP7 application?

If I right click my project and look up "Assembly Information..." in Properties, there is a field called GUID. Should I really care about this, because I have some base code that re re-use and when I just copy and paste the files in a new folder the GUID does not regenerate.

I found one drawback (me thinks) and that's is when you deploy to your phone the old app with the same GUID gets replaces, but thats no show stopper... is there any other things I should know about?

Upvotes: 0

Views: 167

Answers (1)

Metro Smurf
Metro Smurf

Reputation: 38335

Open up the WMAppManifest.xml file and look for the ProductID attribute. That is where the GUID for your application resides.

<App xmlns="" ProductID="{b57106ca-db22-4809-9311-385c2a5b0921}"...

Upvotes: 2

Related Questions