Dotnet Dev on Linux
To create a new project at the current folder:
dotnet new console --framework net6.0 --use-program-main
To run the app:
dotnet run
To create a new project at the current folder:
dotnet new console --framework net6.0 --use-program-main
To run the app:
dotnet run
No Comments