Reputation: 83
i am using visual studuio 2017 i would like to know what to select from the image below, which can allows me to create a cross platform mobile application for xamarin (android, ios, and windows)
I want to create a cross platform mobile application enter image description here
Upvotes: 0
Views: 156
Reputation: 15786
You should select Cross Platform App(Xamarin)
to create xamarin cross platform mobile app.
Follow the Xamarin.Forms Documentation to build your first app.
You can update your Visual Studio 2017 to the lastest version, in the latest version, choose Create new project
==> Visual C#
==> Cross-Platform
==> Mobile App(Xamarin.forms).
The Class library(Xamarin forms)
you selected in the picture is a Portable Class Library (PCL)
, you can have a look at this document about PCL: what-is-a-portable-class-library
Upvotes: 1