Repository to check new .Net 6 functionality.
- Install .Net 6 SDK
- -OR- use docker
- Visual Studio Code
Support on AWS for .Net 6 is documented by Amazon in GitHub. As can be seen from the AWS Developer documentation .Net 6 is a first-class citizen on AWS.
API style competing with 'Python FAST API'
- Scaffolding:
dotnet new webapi -minimal -o minimal
- Location: ./minimal
- Background info: MSDN Tutorial
- Docker Image size: 104MB (alpine)
On a local machine with SDK installed:
dotnet restore minimal
dotnet run minimal
Using docker:
docker build ./minimal -t minimal:latest
docker run -p:8000:80 minimal:latest