NotABot
NotABot

Reputation: 526

Window 10 UWP app development

I am trying to convert my windows phone 8.1 app to windows 10 UWP app. I copy pasted my code files directly to windows 10 app solution and now I am getting these errors: enter image description here

I need these libraries for my project but they are not supported for windows 10, what do I do?

Upvotes: 0

Views: 81

Answers (3)

Daniel Krzyczkowski
Daniel Krzyczkowski

Reputation: 3167

@thewarri0r9 There are options to convert your existing project (either 8.1 WinRT or Silverlight). In this case you you want to convert your WP 8.1 Silverlight project. Please note that even if you use this solution you will have still do some additional changes if needed.

  1. Here you can find description how to convert your WP 8.1 Silverlight project to UWP - nice description with images how to do it in the Visual Studio. This is official Channel9 website.

https://channel9.msdn.com/coding4fun/blog/Bridging-the-WinPhone-to-UWP-Gap

  1. You will have to use "Mobilize.NET’s Silverlight bridge": Here you can download this extension for Visual Studio:

http://www.mobilize.net/download-silverlight-bridge

I hope that this will help you.

Upvotes: 2

RicardoPons
RicardoPons

Reputation: 1353

I see , you have your app for Windows Phone 8.1 Silverlight that is not compatible almost of the all code for UWP apps you will need to rewrite your app again.

Upvotes: 1

Igor Kulman
Igor Kulman

Reputation: 16369

What you can do is to start rewriting the app using the new APIs. There is no way around it.

Upvotes: 1

Related Questions