Reputation: 9380
I am developing an app using Visual Studio Express 2013. I selected a blank application(Universal) template and there is no blank template available specific to phone.
Doing so has created an app with 2 c# classes targeting to both phone and desktop.
How can I create an app which I want to target only for windows phone. Will deleting one of the class from the project solve the purpose?
Upvotes: 0
Views: 82
Reputation: 2621
I think You should select windows phone Apps Template if you are going for only windows phone app.
Upvotes: 2
Reputation: 9444
If you're targeting only WindowsPhone
, then you should be going with the Silverlight
app for WP or the normal WinRT
apps for WP.
Universal
app is where it targets both the WP and the Store
apps.
Hope it helps!
Upvotes: -1