Reputation: 389
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
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
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
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