.Net core console app or winform project

T.Zacks 3,986 Reputation points
2022-08-29T18:29:32.923+00:00

if i develop console app or winform project using .net core 6 then does it run on Mac OS or Linux?

if possible then please share few relevant links which guide me how to configure project which to run on Mac OS or Linux.
from where to download runtime for Mac OS or Linux ?

what are the setting i need to do on Mac OS or Linux to run console app or winform project using .net core 6 ?

please guide me in details. thanks

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,164 questions
0 comments No comments
{count} votes

Accepted answer
  1. Bruce (SqlWork.com) 56,021 Reputation points
    2022-08-30T02:27:33.17+00:00

    Console apps are cross platform.

    Net 6 apps can use native OSX and IOS UIKit on mac, iphone. You can use WinForms on windows, and for Linux, you need to use Xamarin forms this would be 3 different apps.

    The cross platform UI is Maui.


1 additional answer

Sort by: Most helpful
  1. AgaveJoe 26,201 Reputation points
    2022-08-29T18:54:01.6+00:00

    if i develop console app or winform project using .net core 6 then does it run on Mac OS or Linux?

    Console yes but not Windows Forms.

    if possible then please share few relevant links which guide me how to configure project which to run on Mac OS or Linux. from where to download runtime for Mac OS or Linux ?

    Please read the official documentation.

    Target frameworks in SDK-style projects

    what are the setting i need to do on Mac OS or Linux to run console app or winform project using .net core 6 ?

    Please read the official documentation.

    Target frameworks in SDK-style projects

    Do a Google search if you need Blogs and tutorials.

    https://www.google.com/search?q=.net+build+cross+platform

    1 person found this answer helpful.
    0 comments No comments