# Dotnet Dev on Linux

To create a new project at the current folder:

```bash
dotnet new console --framework net6.0 --use-program-main
```

To run the app:

```bash
dotnet run
```