honn verkefni 2
dotnet new webapi -- creates a new (web) api project
dotnet new classlib -- creates a new class library project
dotnet add link to csproj file to add to reference link to csproj file that is to be added -- if you are in the folder that holds the csproj that you are going to be adding to then you can drop the first link reference
dotnet restore -- restores the project in question and updates if there are changes in the csproj file (such as adding new dependencies)
dotnet add package Microsoft.EntityFramworkCore.Sqlite
dotnet add package Microsoft.EntityFramworkCore.Design
dotnet ef migrations add InitialCreate
dotnet ef database update
dotnet build
dotnet run