Central do Minicurso

Abra um terminal e execute:

dotnet --version

Você deve ver uma versão 8.x. Para checar os SDKs instalados:

dotnet --list-sdks

image.png

Teste criando e rodando um template de API mínima:

mkdir teste-minimal-api && cd teste-minimal-api
 dotnet new web -n WsisDemoApi
 cd WsisDemoApi
 dotnet run

image.png