Web based game built with ASP.NET Core
Make sure you have the .NET SDK installed. You can download it from the official .NET website.
If you haven't installed the Entity Framework Core command-line tools, run the following command:
dotnet tool install --global dotnet-ef
Clone repo
git clone https://github.com/borelli28/influence.git
Create and apply migrations then start server
cd influence/App && dotnet ef migrations add InitialCreate && dotnet ef database update && dotnet watch run