01) ls
02) dotnet --info
03) cls
04) mkdir skinet
05) cd skinet
06) dotnet -h
07) dotnet new list
08) dotnet new sln
09) dotnet new webapi -n API -f net6.0 --no-https
10) dotnet sln add API
10) dotnet dev-certs https
11) dotnet dev-certs https --clean
12) dotnet dev-certs https --trust
13) dotnet run
14) dotnet watch
15) dotnet watch --no-hot-reload
16) dotnet restore
17) dotnet tool install --global dotnet-ef --version 7.0.5
dotnet-ef -v
18) dotnet ef migrations
19) dotnet ef migrations add InitalCreate -o Data/Migrations
20) dotnet new classlib -n Core
21) dotnet new classlib -n Infrastructure
22) dotnet sln add Core
23) dotnet sln add Infrastructure
24) dotnet add reference ../Infrastructure
25) cd ..
26) cd Infrastructure
27) dotnet add reference ../Core
28) dotnet restore
29)
30)