简体   繁体   中英

Can I create a UWP project in .NET Framework?

I have Universal Windows Platform project with .NET Core I think. I want to convert it to target .NET Framework.

How can I do that?

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. A main difference between a UWP app and a .NET desktop application is that the former runs in a sandbox that is isolated from other processes, whereas a traditional desktop application typically runs as a full-trust process.

Please refer to the docs for more information about the missing .NET APIs in UWP. You won't be able to use these in a UWP app.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM