Reputation: 11
I am working on hybrid app majorly built on HTML5, CSS3, javascript and wrapped over PhoneGap to create apk, ipa and xap/appx file. With the latest Microsoft announcements, its possible to convert your iOS project to Windows project. Can anyone give a small tour of how to convert an existing iOS project to Windows mobile project?
Upvotes: 1
Views: 1400
Reputation: 1142
Complementing the answer already provided, to convert a Objective-C project to Windows is required to use the tool vsimporter.
This tool is present in open source bridge Project from Microsoft GitHub (https://github.com/Microsoft/WinObjC).
***Check the Readme file before to start
Using vsimporter
The vsimporter tool enables you to import your Xcode project into a new Visual Studio Universal Windows Platform (UWP) app project with Objective-C support.
To use the tool:
c:\winobjc
)c:\winobjc\samples\WOCCatalog
c:\winobjc\samples\WOCCatalog> ..\..\bin\vsimporter.exe
You can also pass the -i option at the command line to run the vsimporter tool in interactive mode. Interactive mode lets you see and select the specific configurations of the Xcode project that you wish to import. By default vsimporter creates a Visual Studio solution that targets Windows 10. If you'd like to target Windows 8.1 (Phone or Store), use the -format option and specify one of winstore8.1, winphone8.1, or winstore10 (winstore10 is the default).
For help running vsimporter, use the -help option at the command line to see the full set of supported options.
To see the complete tutorial, please visit this link
Upvotes: 1
Reputation: 228
You need to follow the steps given below:
Upvotes: 4