can I create uwp project in .net framework ? how?

允我心安 提交于 2020-08-10 23:47:57

问题


1.I have Universal Windows Platform project with .net core I think.
2.I want to convert it to target .net framework.


回答1:


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.



来源:https://stackoverflow.com/questions/55114854/can-i-create-uwp-project-in-net-framework-how

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!