Windows Phone 8 SDK in VS2012, icons?

Where can I change Icons for my App in VS2012 for Windows Phone 8?

How can I open WMAppManifest.xml in Visual Editor? Is it availble in Express edition?

Upvotes: 1

Views: 874

Answers (3)

Matt Lacey
Matt Lacey

Reputation: 65586

The visual designer is available in VS2012Express.

If "View Designer" isn't opening it with the designer, try right clicking on it, selecting "Open With" and then choose "Windows Phone Manifest Designer".
If that option doesn't work or is missing it would suggest a problem with the install. The first step in trying to address this would be to repair the install of the SDK.

Upvotes: 1

Anton Sizikov
Anton Sizikov

Reputation: 9240

If you open WMAppManifest.xml file in xml editor you can find this line:

<IconPath IsRelative="true" IsResource="false">ApplicationIcon.png</IconPath>

This is a path to application icon. Just change it.

Upvotes: 1

Caleb Keith
Caleb Keith

Reputation: 816

Under the properties project folder, double click WMAppManifest.xml. It should be open up in it's own editor.

Edit: Right-Click WMAppManifest.xml and select View Designer.

Upvotes: 2

Related Questions