简体   繁体   中英

How to create a C# .Net Core application without a console on Linux?

I'm creating a Vulkan graphics engine in C# (.Net Core) using GLFW to create a window. Obviously I don't want to force the end user to use a console just to run my application.

I know on Windows I could just create the project as a windows application, but how would I do this on Linux?

The application build using .NET Core should run on Windows and Linux.

One of the characteristics of .NET Core is being able to run the same code on different operating systems so what's build on Windows should run on Linux.

About .NET Core is explicity about this:

Cross-platform: Runs on Windows, macOS, and Linux operating systems.


dotnet new documentation contains the prepacked templates for .NET Core.

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