Application template for .net standard library

0

In Visual Studio, I know that I can create a UWP - Universal Windows Platform application template, where the wizard places references to the .net core libraries in the project, among them the .net standard. The .net framework supports .net standard 1.3, so UWP applications run in the .net framework. But in addition to UWP (or a console model for .net core applications) there is no option to create any other model. How can I create a graphical user interface application that runs on Linux, MacOS, and Windows (via .net standard)?

    
asked by anonymous 08.04.2017 / 22:21

1 answer

0

After a lot of research, I conclude that the .Net Standard Library facilitates cross-platform desktop-mobile, mobile-mobile, and cross-platform web applications, in> Windows Universal Platform . The .Net Standard Library is a standard subset of APIs that must be present in all versions of the existing .Net platform or to be implemented.

So, if you want to build a cross-platform desktop application with graphical interface, I should use the .Net Framework Class Library - .Net Framework that is also implemented by the Mono Project and, optionally, GTK #.

    
17.04.2017 / 02:51