Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I build UWP with .NET Core?

Tags:

.net

.net-core

As I know that the .net-core can run UWP, can we build or write UWP with Core? I've read the https://msdn.microsoft.com/en-us/magazine/mt694084.aspx

like image 703
TeeTracker Avatar asked Jul 04 '16 09:07

TeeTracker


People also ask

What is UWP in .NET core?

NET Core. UWP is also known as Windows 10 UWP application. This application does not run on previous versions of Windows but will only run on future version of Windows. Following are a few exceptions where UWP will run smoothly.

What version of .NET does UWP use?

NET Standard is supported on UWP. The . NET Standard documentation provides information on which . NET Standard is supported in which UWP versions.

Does UWP use .NET framework?

You can indeed build a UWP app using . NET and C#, but UWP apps includes only a subset of the types provided in the full . NET Framework for each namespace.

Is Microsoft UWP dead?

Microsoft continues to baby-step around the obvious, but it has officially deprecated the Universal Windows Platform (UWP) as it pushes the desktop-focused Windows App SDK (formerly called Project Reunion) and WinUI 3 as the future of Windows application development.


1 Answers

UWP apps will be able to use libraries you have created in .net core as long as you target the .netstandard1.6 (or higher) framework moniker.

UWP is only for the windows ecosystem.

See this article.

enter image description here

like image 93
Nick Acosta Avatar answered Oct 04 '22 19:10

Nick Acosta