Home > OS >  Whats the difference between Console App and Console App (.NET Framework)?
Whats the difference between Console App and Console App (.NET Framework)?

Time:08-03

I am new to .NET Framework and Visual Studio. On my Visual Studio Community 2022 i've found two solution from project panel named Console App. One of them has the extended information: (.Net Framework). Can anyone tell me the difference between them?

enter image description here

CodePudding user response:

The difference is that .Net Core Console app is cross platform, meaning it can run on macOS, Linux and Windows machines and .Net Framework Console app can only run on windows machines.

Resource: https://www.geeksforgeeks.org/differences-between-net-core-and-net-framework/

  • Related